Skip to content

Commit

Permalink
liquid: verificationprogress now goes all the way to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
shesek committed Jan 26, 2019
1 parent dead359 commit 07e7e07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 07e7e07

Please sign in to comment.