diff --git a/lib/server.js b/lib/server.js index d6dcf95..22d719b 100644 --- a/lib/server.js +++ b/lib/server.js @@ -2351,7 +2351,10 @@ WalletService.prototype.publishTx = function(opts, cb) { } // Verify UTXOs are still available - self._getUtxosForCurrentWallet({}, function(err, utxos) { + self._getUtxosForCurrentWallet({ + addresses: txp.inputs, + coin: txp.coin, + }, function(err, utxos) { if (err) return cb(err); var txpInputs = _.map(txp.inputs, utxoKey);