diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index 7acb6ce86..1276262b6 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -707,11 +707,12 @@ Wallet.prototype.createTxSync = function(toAddress, amountSatStr, comment, utxos }; } +console.log('[Wallet.js.714:amountSatStr:]',amountSatStr); //TODO var b = new Builder(opts) .setUnspent(utxos) .setOutputs([{ address: toAddress, - amountSat: amountSatStr, + amountSatStr: amountSatStr, }]); var selectedUtxos = b.getSelectedUnspent();