bit poller: fix a off logged percentage

This commit is contained in:
Antoine Poinsot 2022-08-05 18:25:14 +02:00
parent 6ff43fcd95
commit 6b2e901814
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304

View File

@ -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 {