pub trait PoWContext {
    fn set_header_nonce(
        &mut self,
        header: Vec<u8>,
        nonce: Option<u32>,
        solve: bool
    ) -> Result<(), Error>;
fn find_cycles(&mut self) -> Result<Vec<Proof>, Error>;
fn verify(&self, proof: &Proof) -> Result<(), Error>; }
Expand description

Generic trait for a solver/verifier providing common interface into Cuckoo-family PoW Mostly used for verification, but also for test mining if necessary

Required methods

Sets the header along with an optional nonce at the end solve: whether to set up structures for a solve (true) or just validate (false)

find solutions using the stored parameters and header

Verify a solution with the stored parameters

Implementors