Browse Source

Merge pull request #702 from matiu/bug/cross-coin-balance

do not decorate address with .coin param is given
feat/estimateFee-limit
Matias Alejo Garcia 7 years ago
committed by GitHub
parent
commit
ffea739a19
  1. 1
      lib/server.js

1
lib/server.js

@ -1188,6 +1188,7 @@ WalletService.prototype._getUtxosForCurrentWallet = function(opts, cb) {
});
},
function(next) {
if (opts.coin) return next();
// Needed for the clients to sign UTXOs
var addressToPath = _.indexBy(allAddresses, 'address');
_.each(allUtxos, function(utxo) {

Loading…
Cancel
Save