From abd83fd8130a4c78ad7098ed2f9d594caa647dd7 Mon Sep 17 00:00:00 2001 From: Dan Janosik Date: Wed, 9 May 2018 21:22:51 -0400 Subject: [PATCH] show IBD status on nodes < v0.16 --- views/node-details.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/node-details.pug b/views/node-details.pug index 9b6ce1b..9967c5b 100644 --- a/views/node-details.pug +++ b/views/node-details.pug @@ -64,7 +64,7 @@ block content tr th(class="table-active properties-header") Status td(class="monospace") - if (getblockchaininfo.initialblockdownload) + if (getblockchaininfo.initialblockdownload || getblockchaininfo.headers > getblockchaininfo.blocks) span Initial block download progress #{(100 * getblockchaininfo.verificationprogress).toLocaleString()}% else span Synchronized with network