Struct ethjson::spec::tendermint::TendermintParams [−][src]
pub struct TendermintParams {
pub validators: ValidatorSet,
pub timeout_propose: Option<Uint>,
pub timeout_prevote: Option<Uint>,
pub timeout_precommit: Option<Uint>,
pub timeout_commit: Option<Uint>,
pub block_reward: Option<Uint>,
}Tendermint params deserialization.
Fields
validators: ValidatorSet
Valid validators.
timeout_propose: Option<Uint>
Propose step timeout in milliseconds.
timeout_prevote: Option<Uint>
Prevote step timeout in milliseconds.
timeout_precommit: Option<Uint>
Precommit step timeout in milliseconds.
timeout_commit: Option<Uint>
Commit step timeout in milliseconds.
block_reward: Option<Uint>
Reward per block.
Trait Implementations
impl Debug for TendermintParams[src]
impl Debug for TendermintParamsfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for TendermintParams[src]
impl PartialEq for TendermintParamsfn eq(&self, other: &TendermintParams) -> bool[src]
fn eq(&self, other: &TendermintParams) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &TendermintParams) -> bool[src]
fn ne(&self, other: &TendermintParams) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for TendermintParams
impl Send for TendermintParamsimpl Sync for TendermintParams
impl Sync for TendermintParams