Struct everscale_types::models::block::BlockRef
source · pub struct BlockRef {
pub end_lt: u64,
pub seqno: u32,
pub root_hash: CellHash,
pub file_hash: CellHash,
}Expand description
Reference to the external block.
Fields§
§end_lt: u64The end of the logical time of the referenced block.
seqno: u32Sequence number of the referenced block.
root_hash: CellHashRepresentation hash of the root cell of the referenced block.
file_hash: CellHashHash of the BOC encoded root cell of the referenced block.
Trait Implementations§
source§impl PartialEq<BlockRef> for BlockRef
impl PartialEq<BlockRef> for BlockRef
source§impl Store for BlockRef
impl Store for BlockRef
source§fn store_into(
&self,
__builder: &mut CellBuilder,
__finalizer: &mut dyn Finalizer
) -> Result<(), Error>
fn store_into( &self, __builder: &mut CellBuilder, __finalizer: &mut dyn Finalizer ) -> Result<(), Error>
Tries to store itself into the cell builder.