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. 3
      views/includes/block-content.pug

3
views/includes/block-content.pug

@ -55,7 +55,8 @@ div(class="tab-content")
th(class="table-active properties-header") Size th(class="table-active properties-header") Size
td(class="monospace") td(class="monospace")
span #{result.getblock.size.toLocaleString()} bytes 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 tr
th(class="table-active properties-header") Confirmations th(class="table-active properties-header") Confirmations

Loading…
Cancel
Save