Browse Source

Merge pull request #152 from isocolsky/dust

Fix #_selectTxInputs
activeAddress
Ivan Socolsky 10 years ago
parent
commit
d9e9ad9331
  1. 2
      lib/server.js

2
lib/server.js

@ -522,7 +522,7 @@ WalletService.prototype._selectTxInputs = function(txp, cb) {
return cb(new ClientError('DUSTAMOUNT', 'Amount below dust threshold'));
}
return cb(error);
return cb(bitcoreError || new Error('Could not select tx inputs'));
});
};

Loading…
Cancel
Save