pub trait HandleNotifyBlockTip {
    // Required method
    fn handle_notify_block_tip(
        &mut self,
        fn_: NodeNotifyBlockTipFn
    ) -> Box<dyn Handler>;
}

Required Methods§

source

fn handle_notify_block_tip( &mut self, fn_: NodeNotifyBlockTipFn ) -> Box<dyn Handler>

| Register handler for block tip messages. |

Implementors§