pub trait BlockConsumer:
Sync
+ Send
+ 'static {
// Required method
fn consume_block(&self, block: &Block, height: u32);
}Expand description
Trait for components that need to receive notifications about new blocks.
pub trait BlockConsumer:
Sync
+ Send
+ 'static {
// Required method
fn consume_block(&self, block: &Block, height: u32);
}Trait for components that need to receive notifications about new blocks.