From 07e7e072832375c2237d47fe5c2a4faa43edea69 Mon Sep 17 00:00:00 2001 From: Nadav Ivgi Date: Fri, 25 Jan 2019 23:15:04 +0200 Subject: [PATCH] liquid: verificationprogress now goes all the way to 1 https://github.com/Blockstream/liquid/pull/6 --- src/daemon.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon.rs b/src/daemon.rs index b3df85343..274753507 100644 --- a/src/daemon.rs +++ b/src/daemon.rs @@ -337,7 +337,7 @@ impl Daemon { // initialblockdownload is unavailable on the 0.14-based elements let synced = match info.initialblockdownload { Some(ibd) => !ibd, - None => info.verificationprogress > 0.999, + None => info.verificationprogress == 1.0, }; if synced {