Enum ethcore::miner::PendingSet
[−]
[src]
pub enum PendingSet { AlwaysQueue, AlwaysSealing, SealingOrElseQueue, }
Different possible definitions for pending transaction set.
Variants
AlwaysQueue
Always just the transactions in the queue. These have had only cheap checks.
AlwaysSealing
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.
SealingOrElseQueue
Try the sealing block, but if it is not currently sealing, fallback to the queue.