Browse Source

Merge pull request #697 from isocolsky/fix/send-max-cash

Fix UTXOs verification on send max
feat/estimateFee-limit
Matias Alejo Garcia 7 years ago
committed by GitHub
parent
commit
f81b5484c5
  1. 2
      lib/server.js

2
lib/server.js

@ -2222,7 +2222,7 @@ WalletService.prototype.publishTx = function(opts, cb) {
}
// Verify UTXOs are still available
self.getUtxos({}, function(err, utxos) {
self._getUtxosForCurrentWallet({}, function(err, utxos) {
if (err) return cb(err);
var txpInputs = _.map(txp.inputs, utxoKey);

Loading…
Cancel
Save