Trait reth_trie_db::DatabaseHashedStorage

source ·
pub trait DatabaseHashedStorage<TX>: Sized {
    // Required method
    fn from_reverts(
        tx: &TX,
        address: Address,
        from: BlockNumber,
    ) -> Result<Self, DatabaseError>;
}
Expand description

Extends [HashedStorage] with operations specific for working with a database transaction.

Required Methods§

source

fn from_reverts( tx: &TX, address: Address, from: BlockNumber, ) -> Result<Self, DatabaseError>

Initializes [HashedStorage] from reverts. Iterates over storage reverts from the specified block up to the current tip and aggregates them into hashed storage in reverse.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<TX: DbTx> DatabaseHashedStorage<TX> for HashedStorage

source§

fn from_reverts( tx: &TX, address: Address, from: BlockNumber, ) -> Result<Self, DatabaseError>

Implementors§