Struct ethcore::ethereum::ethash::EthashParams [] [src]

pub struct EthashParams {
    pub gas_limit_bound_divisor: U256,
    pub minimum_difficulty: U256,
    pub difficulty_bound_divisor: U256,
    pub difficulty_increment_divisor: u64,
    pub duration_limit: u64,
    pub block_reward: U256,
    pub registrar: Address,
    pub homestead_transition: u64,
    pub dao_hardfork_transition: u64,
    pub dao_hardfork_beneficiary: Address,
    pub dao_hardfork_accounts: Vec<Address>,
    pub difficulty_hardfork_transition: u64,
    pub difficulty_hardfork_bound_divisor: U256,
    pub bomb_defuse_transition: u64,
    pub eip150_transition: u64,
    pub eip155_transition: u64,
    pub eip160_transition: u64,
    pub eip161abc_transition: u64,
    pub eip161d_transition: u64,
    pub ecip1010_pause_transition: u64,
    pub ecip1010_continue_transition: u64,
    pub max_code_size: u64,
}

Ethash params.

Fields

Gas limit divisor.

Minimum difficulty.

Difficulty bound divisor.

Difficulty increment divisor.

Block duration.

Block reward.

Namereg contract address.

Homestead transition block number.

DAO hard-fork transition block (X).

DAO hard-fork refund contract address (C).

DAO hard-fork DAO accounts list (L)

Transition block for a change of difficulty params (currently just bound_divisor).

Difficulty param after the difficulty transition.

Block on which there is no additional difficulty from the exponential bomb.

Number of first block where EIP-150 rules begin.

Number of first block where EIP-155 rules begin.

Number of first block where EIP-160 rules begin.

Number of first block where EIP-161.abc begin.

Number of first block where EIP-161.d begins.

Number of first block where ECIP-1010 begins.

Number of first block where ECIP-1010 ends.

Maximum amount of code that can be deploying into a contract.

Trait Implementations

impl Debug for EthashParams
[src]

Formats the value using the given formatter.

impl PartialEq for EthashParams
[src]

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

This method tests for !=.

impl From<EthashParams> for EthashParams
[src]

Performs the conversion.