Browse Source

add missing monospace font on block-reward values

fix-133-memory-crash
Dan Janosik 7 years ago
parent
commit
7e79ea67f0
  1. 2
      views/includes/block-content.pug
  2. 2
      views/transaction.pug

2
views/includes/block-content.pug

@ -141,7 +141,7 @@ div(class="tab-content")
td
span(class="tag monospace") coinbase
span(class="monospace") Newly minted BTC
td #{utils.getBlockReward(result.getblock.height)}
td(class="monospace") #{utils.getBlockReward(result.getblock.height)}
each txInput, txInputIndex in result.txInputsByTransaction[tx.txid]
if (txInput)

2
views/transaction.pug

@ -163,7 +163,7 @@ block content
td
span(class="tag monospace") coinbase
span(class="monospace") Newly minted BTC
td #{utils.getBlockReward(result.getblock.height)}
td(class="monospace") #{utils.getBlockReward(result.getblock.height)}
each txInput, txInputIndex in result.txInputs
if (txInput)

Loading…
Cancel
Save