pub trait ProcessGetBlockData {
    // Required method
    fn process_get_block_data(
        self: Arc<Self>,
        pfrom: &mut AmoWriteGuard<'_, Box<dyn NodeInterface>>,
        peer: Amo<Peer>,
        inv: &Inv
    );
}

Required Methods§

source

fn process_get_block_data( self: Arc<Self>, pfrom: &mut AmoWriteGuard<'_, Box<dyn NodeInterface>>, peer: Amo<Peer>, inv: &Inv )

Implementors§