pub trait ChainSyncStatus {
// Required method
fn is_close_to_tip(&self) -> bool;
}
Expand description
An interface for checking if the synchronization is likely close to the network chain tip.
Required Methods§
sourcefn is_close_to_tip(&self) -> bool
fn is_close_to_tip(&self) -> bool
Check if the synchronization is likely close to the network chain tip.