This commit is contained in:
sairaj mote 2023-08-09 00:45:40 +05:30
parent 2d5c90c3bd
commit 3b0899c280

View File

@ -1357,9 +1357,8 @@
} }
txDetailsAbortController = new AbortController(); txDetailsAbortController = new AbortController();
btcOperator.getTx(txid).then(result => { btcOperator.getTx(txid).then(result => {
let { block, time, size, fee, inputs, outputs, confirmations, total_input_value, total_output_value } = result; const { block, time, size, fee, inputs, outputs, confirmations, total_input_value, total_output_value } = result;
console.debug('tx', result); console.debug('tx', result);
block = undefined
renderElem(getRef('tx_details'), html` renderElem(getRef('tx_details'), html`
<h3>Transaction Details</h3> <h3>Transaction Details</h3>
<div class="flex align-center gap-1 space-between flex-wrap"> <div class="flex align-center gap-1 space-between flex-wrap">