Browse Source

update fetched txs

activeAddress
Matias Alejo Garcia 10 years ago
parent
commit
20e4dd8da0
  1. 2
      lib/server.js

2
lib/server.js

@ -750,7 +750,7 @@ WalletService.prototype._selectTxInputs = function(txp, cb) {
WalletService.prototype._canCreateTx = function(copayerId, cb) {
var self = this;
self.storage.fetchLastTxs(self.walletId, copayerId, 5, function(err, txs) {
self.storage.fetchLastTxs(self.walletId, copayerId, 5 + WalletService.backoffOffset, function(err, txs) {
if (err) return cb(err);
if (!txs.length)

Loading…
Cancel
Save