From 23ba3e6ebf37141e8196b7c3ef945fef29788cbf Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Fri, 25 Jul 2014 07:53:02 -0300 Subject: [PATCH] updates version and use latest bitcore params --- js/models/core/Wallet.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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();