pub trait ExternalMinerService: Send + Sync {
    fn submit_hashrate(&self, hashrate: U256, id: H256);
fn hashrate(&self) -> U256; }
Expand description

External miner interface.

Required methods

Submit hashrate for given miner.

Total hashrate.

Implementors