Struct aptos_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
sourceimpl 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
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 next_block_epoch(&self) -> u64
pub fn next_block_epoch(&self) -> u64
The epoch after this block committed
pub fn change_timestamp(&mut self, timestamp: u64)
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, executed_block_info: &BlockInfo) -> bool
pub fn match_ordered_only(&self, executed_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, compared 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
sourceimpl<'de> Deserialize<'de> for BlockInfo
impl<'de> Deserialize<'de> for BlockInfo
sourcefn 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
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> TestOnlyHash for T where
T: Serialize + ?Sized,
impl<T> TestOnlyHash for T where
T: Serialize + ?Sized,
sourcefn test_only_hash(&self) -> HashValue
fn test_only_hash(&self) -> HashValue
Generates a hash used only for tests.
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more