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§

source

fn is_close_to_tip(&self) -> bool

Check if the synchronization is likely close to the network chain tip.

Implementors§