Struct ethcore::spec::spec::CommonParams [] [src]

pub struct CommonParams {
    pub account_start_nonce: U256,
    pub maximum_extra_data_size: usize,
    pub network_id: u64,
    pub chain_id: u64,
    pub subprotocol_name: String,
    pub min_gas_limit: U256,
    pub fork_block: Option<(BlockNumber, H256)>,
    pub eip98_transition: BlockNumber,
}

Parameters common to all engines.

Fields

Account start nonce.

Maximum size of extra data.

Network id.

Chain id.

Main subprotocol name.

Minimum gas limit.

Fork block to check.

Number of first block where EIP-98 rules begin.

Trait Implementations

impl Debug for CommonParams
[src]

Formats the value using the given formatter.

impl PartialEq for CommonParams
[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 CommonParams
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for CommonParams
[src]

Returns the "default value" for a type. Read more

impl From<Params> for CommonParams
[src]

Performs the conversion.