Trait grin_core::pow::PoWContext

source ·
pub trait PoWContext {
    // Required methods
    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§

source

fn set_header_nonce( &mut self, header: Vec<u8>, nonce: Option<u32>, solve: bool ) -> Result<(), Error>

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)

source

fn find_cycles(&mut self) -> Result<Vec<Proof>, Error>

find solutions using the stored parameters and header

source

fn verify(&self, proof: &Proof) -> Result<(), Error>

Verify a solution with the stored parameters

Implementors§