Struct snarkos_consensus::miner::Miner[][src]

pub struct Miner<S: Storage> {
    pub consensus: Arc<Consensus<S>>,
    // some fields omitted
}

Compiles transactions into blocks to be submitted to the network. Uses a proof of work based algorithm to find valid blocks.

Fields

consensus: Arc<Consensus<S>>

The consensus parameters for the network of this miner.

Implementations

impl<S: Storage> Miner<S>[src]

pub fn new(
    address: AccountAddress<Components>,
    consensus: Arc<Consensus<S>>
) -> Self
[src]

Creates a new instance of Miner.

pub fn fetch_memory_pool_transactions(
    &self
) -> Result<DPCTransactions<Tx>, ConsensusError>
[src]

Fetches new transactions from the memory pool.

pub fn add_coinbase_transaction<R: Rng>(
    &self,
    transactions: &mut DPCTransactions<Tx>,
    rng: &mut R
) -> Result<Vec<DPCRecord<Components>>, ConsensusError>
[src]

Add a coinbase transaction to a list of candidate block transactions

pub fn establish_block(
    &self,
    transactions: &DPCTransactions<Tx>
) -> Result<(BlockHeader, DPCTransactions<Tx>, Vec<DPCRecord<Components>>), ConsensusError>
[src]

Acquires the storage lock and returns the previous block header and verified transactions.

pub fn find_block<T: Transaction>(
    &self,
    transactions: &DPCTransactions<T>,
    parent_header: &BlockHeader
) -> Result<BlockHeader, ConsensusError>
[src]

Run proof of work to find block. Returns BlockHeader with nonce solution.

pub fn mine_block(
    &self
) -> Result<(Block<Tx>, Vec<DPCRecord<Components>>), ConsensusError>
[src]

Returns a mined block. Calls methods to fetch transactions, run proof of work, and add the block into the chain for storage.

Auto Trait Implementations

impl<S> !RefUnwindSafe for Miner<S>

impl<S> Send for Miner<S> where
    S: Send + Sync

impl<S> Sync for Miner<S> where
    S: Send + Sync

impl<S> Unpin for Miner<S>

impl<S> !UnwindSafe for Miner<S>

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> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,