diff --git a/views/includes/block-content.pug b/views/includes/block-content.pug index 373e21f..5c34c91 100644 --- a/views/includes/block-content.pug +++ b/views/includes/block-content.pug @@ -80,14 +80,12 @@ div(class="tab-content") if (coinbaseTxTotalOutputValue < blockRewardMax) div(class="row") - div(class="summary-split-table-label") Fees Destroyed - div(class="summary-split-table-content monospace text-warning") + div(class="summary-split-table-label") + span.border-dotted(data-toggle="tooltip" title="The miner of this block failed to collect this value. As a result, it is lost.") Fees Destroyed + div(class="summary-split-table-content monospace text-danger") - var currencyValue = new Decimal(blockRewardMax).minus(coinbaseTxTotalOutputValue); include ./value-display.pug - a(class="ml-2", data-toggle="tooltip", title="The miner of this block failed to collect this value. As a result, it is lost.") - i(class="fas fa-info-circle") - if (result.getblock.weight) div(class="row") div(class="summary-split-table-label") Weight diff --git a/views/transaction.pug b/views/transaction.pug index 3b43585..8a5b681 100644 --- a/views/transaction.pug +++ b/views/transaction.pug @@ -151,14 +151,12 @@ block content - var blockRewardMax = coinConfig.blockRewardFunction(result.getblock.height); if (totalOutputValue < blockRewardMax) div(class="row") - div(class="summary-table-label") Fees Destroyed - div(class="summary-table-content monospace") + div(class="summary-table-label") + span.border-dotted(data-toggle="tooltip" title="The miner of this transaction's block failed to collect this value. As a result, it is lost.") Fees Destroyed + div(class="summary-table-content monospace text-danger") - var currencyValue = new Decimal(blockRewardMax).minus(totalOutputValue); include includes/value-display.pug - a(class="ml-2", data-toggle="tooltip", title="The miner of this transaction's block failed to collect this value. As a result, it is lost.") - i(class="fas fa-info-circle") - if (minerInfo) - var minerInfo = utils.getMinerFromCoinbaseTx(result.getrawtransaction); div(class="row")