Browse Source

Merge pull request #22 from qshuai/master

fix block weight item for supporting bitcoin-abc
fix-133-memory-crash
Dan Janosik 7 years ago
committed by GitHub
parent
commit
3bf8bbbe58
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      views/includes/block-content.pug

1
views/includes/block-content.pug

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

Loading…
Cancel
Save