Browse Source

remove redundant check

activeAddress
Ivan Socolsky 10 years ago
parent
commit
469d7dfebe
  1. 3
      cli.js
  2. BIN
      db/copay.db/000013.ldb
  3. 1
      db/copay.db/CURRENT
  4. 0
      db/copay.db/LOCK
  5. 3
      db/copay.db/LOG
  6. 3
      db/copay.db/LOG.old
  7. BIN
      db/copay.db/MANIFEST-000021
  8. 3
      lib/server.js

3
cli.js

@ -0,0 +1,3 @@
var _ = require('lodash');
var request = require('request');
var program = require('commander');

BIN
db/copay.db/000013.ldb

Binary file not shown.

1
db/copay.db/CURRENT

@ -0,0 +1 @@
MANIFEST-000021

0
db/copay.db/LOCK

3
db/copay.db/LOG

@ -0,0 +1,3 @@
2015/02/09-15:18:43.041206 106a0a000 Recovering log #20
2015/02/09-15:18:43.042521 106a0a000 Delete type=0 #20
2015/02/09-15:18:43.042604 106a0a000 Delete type=3 #19

3
db/copay.db/LOG.old

@ -0,0 +1,3 @@
2015/02/09-15:18:03.323403 103704000 Recovering log #18
2015/02/09-15:18:03.324683 103704000 Delete type=0 #18
2015/02/09-15:18:03.324769 103704000 Delete type=3 #17

BIN
db/copay.db/MANIFEST-000021

Binary file not shown.

3
lib/server.js

@ -548,7 +548,6 @@ CopayServer.prototype.signTx = function(opts, cb) {
id: opts.txProposalId
}, function(err, txp) {
if (err) return cb(err);
if (!txp) return cb(new ClientError('Transaction proposal not found'));
var action = _.find(txp.actions, {
copayerId: self.copayerId
@ -602,7 +601,7 @@ CopayServer.prototype.rejectTx = function(opts, cb) {
id: opts.txProposalId
}, function(err, txp) {
if (err) return cb(err);
if (!txp) return cb(new ClientError('Transaction proposal not found'));
var action = _.find(txp.actions, {
copayerId: self.copayerId
});

Loading…
Cancel
Save