Enum ethcore::miner::Penalization[][src]

pub enum Penalization {
    Disabled,
    Enabled {
        offend_threshold: Duration,
    },
}

Transaction queue penalization settings.

Senders of long-running transactions (above defined threshold) will get lower priority.

Variants

Penalization in transaction queue is disabled

Penalization in transaction queue is enabled

Fields of Enabled

Upper limit of transaction processing time before penalizing.

Trait Implementations

impl Debug for Penalization
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Penalization
[src]

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

This method tests for !=.

impl Clone for Penalization
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Penalization

impl Sync for Penalization