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 force_sealing enabled.

Try the sealing block, but if it is not currently sealing, fallback to the queue.

Trait Implementations

impl Debug for PendingSet
[src]

Formats the value using the given formatter.

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 !=.