WarpSync: Show number of required peers in informant (#14190)

This makes it for the user more obvious on what we are waiting and not just "waiting for peers".
This commit is contained in:
Bastian Köcher
2023-05-22 22:23:10 +02:00
committed by GitHub
parent 2decceef76
commit 918d1ef80d
2 changed files with 9 additions and 4 deletions
+6 -2
View File
@@ -515,8 +515,12 @@ where
phase: WarpSyncPhase::DownloadingBlocks(gap_sync.best_queued_number),
total_bytes: 0,
}),
(None, SyncMode::Warp, _) =>
Some(WarpSyncProgress { phase: WarpSyncPhase::AwaitingPeers, total_bytes: 0 }),
(None, SyncMode::Warp, _) => Some(WarpSyncProgress {
phase: WarpSyncPhase::AwaitingPeers {
required_peers: MIN_PEERS_TO_START_WARP_SYNC,
},
total_bytes: 0,
}),
(Some(sync), _, _) => Some(sync.progress()),
_ => None,
};