Struct ethers_core::utils::CliqueConfig
source · pub struct CliqueConfig {
pub period: Option<u64>,
pub epoch: Option<u64>,
}
Expand description
Consensus configuration for Clique.
Fields§
§period: Option<u64>
Number of seconds between blocks to enforce.
epoch: Option<u64>
Epoch length to reset votes and checkpoints.
Trait Implementations§
source§impl Clone for CliqueConfig
impl Clone for CliqueConfig
source§fn clone(&self) -> CliqueConfig
fn clone(&self) -> CliqueConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CliqueConfig
impl Debug for CliqueConfig
source§impl<'de> Deserialize<'de> for CliqueConfig
impl<'de> Deserialize<'de> for CliqueConfig
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<CliqueConfig> for CliqueConfig
impl PartialEq<CliqueConfig> for CliqueConfig
source§fn eq(&self, other: &CliqueConfig) -> bool
fn eq(&self, other: &CliqueConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.