From 0ae8417fc2b5798c4f36e4a20ef51f2be55ede7a Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Tue, 27 Dec 2022 23:24:20 +0530 Subject: [PATCH] bug fix --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 0653beb..f953b45 100644 --- a/index.html +++ b/index.html @@ -1584,8 +1584,8 @@ if (getRef('fees_selector').value === 'custom') { fee = parseFloat((parseFloat(getRef('send_fee').value.trim()) / globalExchangeRate[getRef('currency_selector').value]).toFixed(8)); } - btcOperator.sendTx(senders, privKeys, receivers, amounts, fee).then(result => { - console.log(result); + btcOperator.sendTx(senders, privKeys, receivers, amounts, fee).then(txid => { + console.log(txid); getRef('txid').value = txid; openPopup('txid_popup'); getRef('send_tx').reset()