Browse Source

fix block weight item for supporting bitcoin-abc

fix-133-memory-crash
qshuai 7 years ago
parent
commit
65ae0cd62c
  1. 3
      views/includes/block-content.pug

3
views/includes/block-content.pug

@ -56,7 +56,8 @@ div(class="tab-content")
th(class="table-active properties-header") Size
td(class="monospace")
span #{result.getblock.size.toLocaleString()} bytes
span(class="text-muted") (weight: #{result.getblock.weight.toLocaleString()})
if (result.getblock.weight)
span(class="text-muted") (weight: #{result.getblock.weight.toLocaleString()})
tr
th(class="table-active properties-header") Confirmations

Loading…
Cancel
Save