Enum ethcore::miner::PendingSet[][src]

pub enum PendingSet {
    AlwaysQueue,
    AlwaysSealing,
    SealingOrElseQueue,
}

Different possible definitions for pending transaction set.

Variants

Always just the transactions in the queue. These have had only cheap checks.

Always just the transactions in the sealing block. These have had full checks but may be empty if the node is not actively mining or has no force_sealing enabled.

Takes from sealing if mining, from queue otherwise.

Trait Implementations

impl Debug for PendingSet
[src]

Formats the value using the given formatter. Read more

impl PartialEq for PendingSet
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for PendingSet

impl Sync for PendingSet