Struct diem_types::block_info::BlockInfo
source · pub struct BlockInfo { /* private fields */ }
Expand description
This structure contains all the information needed for tracking a block without having access to the block or its execution output state. It assumes that the block is the last block executed within the ledger.
Implementations§
source§impl BlockInfo
impl BlockInfo
pub fn new( epoch: u64, round: Round, id: HashValue, executed_state_id: HashValue, version: Version, timestamp_usecs: u64, next_epoch_state: Option<EpochState> ) -> Self
pub fn empty() -> Self
pub fn random(round: Round) -> Self
sourcepub fn genesis(
genesis_state_root_hash: HashValue,
validator_set: ValidatorSet
) -> Self
pub fn genesis( genesis_state_root_hash: HashValue, validator_set: ValidatorSet ) -> Self
Create a new genesis block. The genesis block is effectively the blockchain state after executing the initial genesis transaction.
-
genesis_state_root_hash
- the state tree root hash after executing the initial genesis transaction. -
validator_set
- the initial validator set, configured when generating the genesis transaction itself and emitted after executing the genesis transaction. Using this genesis block means transitioning to a new epoch (GENESIS_EPOCH + 1) with thisvalidator_set
.
sourcepub fn mock_genesis(validator_set: Option<ValidatorSet>) -> Self
pub fn mock_genesis(validator_set: Option<ValidatorSet>) -> Self
Create a mock genesis BlockInfo
with an empty state tree and empty
validator set.
sourcepub fn next_block_epoch(&self) -> u64
pub fn next_block_epoch(&self) -> u64
The epoch after this block committed
pub fn epoch(&self) -> u64
pub fn executed_state_id(&self) -> HashValue
pub fn has_reconfiguration(&self) -> bool
pub fn id(&self) -> HashValue
pub fn next_epoch_state(&self) -> Option<&EpochState>
pub fn round(&self) -> Round
pub fn timestamp_usecs(&self) -> u64
pub fn version(&self) -> Version
sourcepub fn match_ordered_only(&self, block_info: &BlockInfo) -> bool
pub fn match_ordered_only(&self, block_info: &BlockInfo) -> bool
This function checks if the current BlockInfo has exactly the same values in those fields that will not change after execution, compred to a given BlockInfo
sourcepub fn is_ordered_only(&self) -> bool
pub fn is_ordered_only(&self) -> bool
This function checks if the current BlockInfo is consistent with the dummy values we put in the ordering state computer and it is not empty
Trait Implementations§
source§impl Arbitrary for BlockInfo
impl Arbitrary for BlockInfo
§type Parameters = (<u64 as Arbitrary>::Parameters, <u64 as Arbitrary>::Parameters, <HashValue as Arbitrary>::Parameters, <HashValue as Arbitrary>::Parameters, <u64 as Arbitrary>::Parameters, <u64 as Arbitrary>::Parameters, <Option<EpochState> as Arbitrary>::Parameters)
type Parameters = (<u64 as Arbitrary>::Parameters, <u64 as Arbitrary>::Parameters, <HashValue as Arbitrary>::Parameters, <HashValue as Arbitrary>::Parameters, <u64 as Arbitrary>::Parameters, <u64 as Arbitrary>::Parameters, <Option<EpochState> as Arbitrary>::Parameters)
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.§type Strategy = Map<(<u64 as Arbitrary>::Strategy, <u64 as Arbitrary>::Strategy, <HashValue as Arbitrary>::Strategy, <HashValue as Arbitrary>::Strategy, <u64 as Arbitrary>::Strategy, <u64 as Arbitrary>::Strategy, <Option<EpochState> as Arbitrary>::Strategy), fn(_: (u64, u64, HashValue, HashValue, u64, u64, Option<EpochState>)) -> BlockInfo>
type Strategy = Map<(<u64 as Arbitrary>::Strategy, <u64 as Arbitrary>::Strategy, <HashValue as Arbitrary>::Strategy, <HashValue as Arbitrary>::Strategy, <u64 as Arbitrary>::Strategy, <u64 as Arbitrary>::Strategy, <Option<EpochState> as Arbitrary>::Strategy), fn(_: (u64, u64, HashValue, HashValue, u64, u64, Option<EpochState>)) -> BlockInfo>
Strategy
used to generate values of type Self
.source§fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy
fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy
source§impl<'de> Deserialize<'de> for BlockInfo
impl<'de> Deserialize<'de> for BlockInfo
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>,
source§impl PartialEq<BlockInfo> for BlockInfo
impl PartialEq<BlockInfo> for BlockInfo
impl Eq for BlockInfo
impl StructuralEq for BlockInfo
impl StructuralPartialEq for BlockInfo
Auto Trait Implementations§
impl RefUnwindSafe for BlockInfo
impl Send for BlockInfo
impl Sync for BlockInfo
impl Unpin for BlockInfo
impl UnwindSafe for BlockInfo
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.