Struct ckb_jsonrpc_types::EpochView
source · 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§
source§impl<'de> Deserialize<'de> for EpochView
impl<'de> Deserialize<'de> for EpochView
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<EpochView> for EpochView
impl PartialEq<EpochView> for EpochView
impl Eq for EpochView
impl StructuralEq for EpochView
impl StructuralPartialEq for EpochView
Auto Trait Implementations§
impl RefUnwindSafe for EpochView
impl Send for EpochView
impl Sync for EpochView
impl Unpin for EpochView
impl UnwindSafe for EpochView
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more