Trait sc_client_api::backend::PrunableStateChangesTrieStorage[][src]

pub trait PrunableStateChangesTrieStorage<Block: BlockT>: StateChangesTrieStorage<HashFor<Block>, NumberFor<Block>> {
    fn storage(
        &self
    ) -> &dyn StateChangesTrieStorage<HashFor<Block>, NumberFor<Block>>;
fn configuration_at(
        &self,
        at: &BlockId<Block>
    ) -> Result<ChangesTrieConfigurationRange<NumberFor<Block>, Block::Hash>>;
fn oldest_pruned_digest_range_end(&self) -> NumberFor<Block>; }
Expand description

Changes trie storage that supports pruning.

Required methods

Get reference to StateChangesTrieStorage.

Get configuration at given block.

Get end block (inclusive) of oldest pruned max-level (or skewed) digest trie blocks range. It is guaranteed that we have no any changes tries before (and including) this block. It is guaranteed that all existing changes tries after this block are not yet pruned (if created).

Implementors