pub trait SyncNode {
    // Required methods
    fn alias(&self) -> NodeAlias;
    fn last_block_height(&self) -> u32;
    fn log_stats(&self);
    fn tip(&self) -> Hash;
    fn log_content(&self) -> String;
    fn get_lines_with_error_and_invalid(&self) -> Vec<String>;
    fn is_running(&self) -> bool;
}

Required Methods§

Implementors§