Browse Source

show IBD status on nodes < v0.16

fix-133-memory-crash
Dan Janosik 7 years ago
parent
commit
abd83fd813
  1. 2
      views/node-details.pug

2
views/node-details.pug

@ -64,7 +64,7 @@ block content
tr tr
th(class="table-active properties-header") Status th(class="table-active properties-header") Status
td(class="monospace") td(class="monospace")
if (getblockchaininfo.initialblockdownload) if (getblockchaininfo.initialblockdownload || getblockchaininfo.headers > getblockchaininfo.blocks)
span Initial block download progress #{(100 * getblockchaininfo.verificationprogress).toLocaleString()}% span Initial block download progress #{(100 * getblockchaininfo.verificationprogress).toLocaleString()}%
else else
span Synchronized with network span Synchronized with network

Loading…
Cancel
Save