Browse Source

get utxos based on current wallet coin

feat/estimateFee-limit
Ivan Socolsky 7 years ago
parent
commit
5c3b0f4d37
No known key found for this signature in database GPG Key ID: FAECE6A05FAA4F56
  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