From 6b2e90181484d5dd0ed4ee23b78ab705d98b5c36 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Fri, 5 Aug 2022 18:25:14 +0200 Subject: [PATCH] bit poller: fix a off logged percentage --- src/bitcoin/poller/looper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitcoin/poller/looper.rs b/src/bitcoin/poller/looper.rs index 7df006fa..0a212932 100644 --- a/src/bitcoin/poller/looper.rs +++ b/src/bitcoin/poller/looper.rs @@ -63,7 +63,7 @@ pub fn looper( let sync_progress = bit.sync_progress(); log::info!( "Block chain synchronization progress: {:.2}%", - sync_progress + sync_progress * 100.0 ); synced = sync_progress == 1.0; if !synced {