This commit is contained in:
sairaj mote 2022-12-27 23:24:20 +05:30
parent b8f077a8e9
commit 0ae8417fc2

View File

@ -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()