Merge pull request #1550 from cmgustavo/bug/10-amount
Bug/Invalid-amount
This commit is contained in:
commit
02b85870df
4 changed files with 48 additions and 38 deletions
|
|
@ -2206,7 +2206,7 @@ Wallet.prototype.createTx = function(toAddress, amountSatStr, comment, opts, cb)
|
|||
|
||||
var ntxid = self.createTxSync(toAddress, amountSatStr, comment, safeUnspent, opts);
|
||||
if (!ntxid) {
|
||||
return cb(new Error('Error creating TX'));
|
||||
return cb(new Error('Error creating the Transaction'));
|
||||
}
|
||||
|
||||
self.sendIndexes();
|
||||
|
|
@ -2241,12 +2241,19 @@ Wallet.prototype.createTxSync = function(toAddress, amountSatStr, comment, utxos
|
|||
opts[k] = Wallet.builderOpts[k];
|
||||
}
|
||||
|
||||
var b = new Builder(opts)
|
||||
var b;
|
||||
|
||||
try {
|
||||
b = new Builder(opts)
|
||||
.setUnspent(utxos)
|
||||
.setOutputs([{
|
||||
address: toAddress,
|
||||
amountSatStr: amountSatStr,
|
||||
}]);
|
||||
} catch (e) {
|
||||
log.debug(e.message);
|
||||
return;
|
||||
};
|
||||
|
||||
var selectedUtxos = b.getSelectedUnspent();
|
||||
var inputChainPaths = selectedUtxos.map(function(utxo) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue