Struct fuel_merkle::sum::MerkleTree

source ·
pub struct MerkleTree<TableType, StorageType> { /* private fields */ }
Expand description

The Binary Merkle Sum Tree is an extension to the existing Binary MerkleTree. A node (leaf or internal node) in the tree is defined as having:

  • a fee (u64, 8 bytes)
  • a digest (array of bytes)

Therefore, a node’s data is now a data pair formed by (fee, digest). The data pair of a node with two or more leaves is defined as:

(left.fee + right.fee, hash(0x01 ++ left.fee ++ left.digest ++ right.fee ++ right.digest))

This is in contrast to the Binary Merkle Tree node, where a node has only a digest.

See the specification for more details.

Details

When joining subtrees a and b, the joined subtree is now defined as:

fee: a.fee + b.fee data: node_sum(a.fee, a.data, b.fee, b.data)

where node_sum is defined as the hash function described in the data pair description above.

Implementations§

source§

impl<TableType, StorageType> MerkleTree<TableType, StorageType>

source

pub const fn empty_root() -> (u64, Bytes32)

source§

impl<TableType, StorageType, StorageError> MerkleTree<TableType, StorageType>where TableType: Mappable<Key = Bytes32, Value = Node, OwnedValue = Node>, StorageType: StorageMutate<TableType, Error = StorageError>,

source

pub fn new(storage: StorageType) -> Self

source

pub fn root(&mut self) -> Result<(u64, Bytes32), StorageError>

source

pub fn push(&mut self, fee: u64, data: &[u8]) -> Result<(), StorageError>

Auto Trait Implementations§

§

impl<TableType, StorageType> RefUnwindSafe for MerkleTree<TableType, StorageType>where StorageType: RefUnwindSafe, TableType: RefUnwindSafe,

§

impl<TableType, StorageType> Send for MerkleTree<TableType, StorageType>where StorageType: Send, TableType: Send,

§

impl<TableType, StorageType> Sync for MerkleTree<TableType, StorageType>where StorageType: Sync, TableType: Sync,

§

impl<TableType, StorageType> Unpin for MerkleTree<TableType, StorageType>where StorageType: Unpin, TableType: Unpin,

§

impl<TableType, StorageType> UnwindSafe for MerkleTree<TableType, StorageType>where StorageType: UnwindSafe, TableType: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> StorageAsMut for T

source§

fn storage<Type>(&mut self) -> StorageMut<'_, Self, Type>where Type: Mappable,

source§

fn storage_as_mut<Type>(&mut self) -> StorageMut<'_, Self, Type>where Type: Mappable,

source§

impl<T> StorageAsRef for T

source§

fn storage<Type>(&self) -> StorageRef<'_, Self, Type>where Type: Mappable,

source§

fn storage_as_ref<Type>(&self) -> StorageRef<'_, Self, Type>where Type: Mappable,

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.