pub trait NotifyWork: Send + Sync {
    fn notify(&self, pow_hash: H256, difficulty: U256, number: u64);
}
Expand description

Trait for notifying about new mining work

Required methods

Fired when new mining job available

Implementors