pub trait TpuInfo {
    // Required methods
    fn refresh_recent_peers(&mut self);
    fn get_leader_tpus(
        &self,
        max_count: u64,
        protocol: Protocol
    ) -> Vec<&SocketAddr>;
}

Required Methods§

source

fn refresh_recent_peers(&mut self)

source

fn get_leader_tpus( &self, max_count: u64, protocol: Protocol ) -> Vec<&SocketAddr>

Implementors§