Browse Source

use getTotalAmount() instead of amount field

activeAddress
Ivan Socolsky 9 years ago
parent
commit
88f972e7d3
  1. 2
      lib/server.js

2
lib/server.js

@ -1241,7 +1241,7 @@ WalletService.prototype._selectTxInputs = function(txp, utxosToExclude, cb) {
}
if (totalAmount < txp.getTotalAmount()) return cb(Errors.INSUFFICIENT_FUNDS);
if (availableAmount < txp.amount) return cb(Errors.LOCKED_FUNDS);
if (availableAmount < txp.getTotalAmount()) return cb(Errors.LOCKED_FUNDS);
// Prepare UTXOs list
utxos = _.reject(utxos, 'locked');

Loading…
Cancel
Save