Struct sc_consensus_pow::MiningWorker[][src]

pub struct MiningWorker<Block: BlockT, Algorithm: PowAlgorithm<Block>, C: ProvideRuntimeApi<Block>> { /* fields omitted */ }

Mining worker that exposes structs to query the current mining build and submit mined blocks.

Implementations

impl<Block, Algorithm, C> MiningWorker<Block, Algorithm, C> where
    Block: BlockT,
    C: ProvideRuntimeApi<Block>,
    Algorithm: PowAlgorithm<Block>,
    Algorithm::Difficulty: 'static, 
[src]

pub fn best_hash(&self) -> Option<Block::Hash>[src]

Get the current best hash. None if the worker has just started or the client is doing major syncing.

pub fn metadata(
    &self
) -> Option<MiningMetadata<Block::Hash, Algorithm::Difficulty>>
[src]

Get a copy of the current mining metadata, if available.

pub fn submit(&mut self, seal: Seal) -> bool[src]

Submit a mined seal. The seal will be validated again. Returns true if the submission is successful.

Auto Trait Implementations

impl<Block, Algorithm, C> !RefUnwindSafe for MiningWorker<Block, Algorithm, C>[src]

impl<Block, Algorithm, C> Send for MiningWorker<Block, Algorithm, C> where
    Algorithm: Send,
    <Algorithm as PowAlgorithm<Block>>::Difficulty: Send
[src]

impl<Block, Algorithm, C> Sync for MiningWorker<Block, Algorithm, C> where
    Algorithm: Sync,
    <Algorithm as PowAlgorithm<Block>>::Difficulty: Sync,
    <<<C as ProvideRuntimeApi<Block>>::Api as ApiExt<Block>>::StateBackend as Backend<<<Block as Block>::Header as Header>::Hashing>>::Transaction: Sync
[src]

impl<Block, Algorithm, C> Unpin for MiningWorker<Block, Algorithm, C> where
    Algorithm: Unpin,
    Block: Unpin,
    <Algorithm as PowAlgorithm<Block>>::Difficulty: Unpin,
    <Block as Block>::Hash: Unpin,
    <<Block as Block>::Header as Header>::Hashing: Unpin,
    <<Block as Block>::Header as Header>::Number: Unpin,
    <<<C as ProvideRuntimeApi<Block>>::Api as ApiExt<Block>>::StateBackend as Backend<<<Block as Block>::Header as Header>::Hashing>>::Transaction: Unpin
[src]

impl<Block, Algorithm, C> !UnwindSafe for MiningWorker<Block, Algorithm, C>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedConversion for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,