Struct ethcore_miner::pool::PendingSettings[][src]

pub struct PendingSettings {
    pub block_number: u64,
    pub current_timestamp: u64,
    pub nonce_cap: Option<U256>,
    pub max_len: usize,
    pub ordering: PendingOrdering,
}

Pending set query settings

Fields

Current block number (affects readiness of some transactions).

Current timestamp (affects readiness of some transactions).

Nonce cap (for dust protection; EIP-168)

Maximal number of transactions in pending the set.

Ordering of transactions.

Methods

impl PendingSettings
[src]

Get all transactions (no cap or len limit) prioritized.

Trait Implementations

impl Debug for PendingSettings
[src]

Formats the value using the given formatter. Read more

impl Clone for PendingSettings
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for PendingSettings

impl Sync for PendingSettings