Struct ckb_jsonrpc_types::EpochView [−][src]
pub struct EpochView {
pub number: EpochNumber,
pub start_number: BlockNumber,
pub length: BlockNumber,
pub compact_target: Uint32,
}Expand description
JSON view of an epoch.
CKB adjusts difficulty based on epochs.
Examples
{
"compact_target": "0x1e083126",
"length": "0x708",
"number": "0x1",
"start_number": "0x3e8"
}Fields
number: EpochNumberConsecutive epoch number starting from 0.
start_number: BlockNumberThe block number of the first block in the epoch.
It also equals the total count of blocks in all the epochs which epoch number is less than this epoch.
length: BlockNumberThe number of blocks in this epoch.
compact_target: Uint32The difficulty target for any block in this epoch.
Implementations
Trait Implementations
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
Auto Trait Implementations
impl RefUnwindSafe for EpochView
impl UnwindSafe for EpochView
Blanket Implementations
Mutably borrows from an owned value. Read more