pub trait FindNextBlocksToDownload {
    // Required method
    fn find_next_blocks_to_download(
        self: Arc<Self>,
        nodeid: NodeId,
        count: u32,
        blocks: &mut Vec<Option<Arc<BlockIndex>>>,
        node_staller: &mut NodeId
    );
}

Required Methods§

source

fn find_next_blocks_to_download( self: Arc<Self>, nodeid: NodeId, count: u32, blocks: &mut Vec<Option<Arc<BlockIndex>>>, node_staller: &mut NodeId )

Implementors§