[][src]Trait pallet_contracts::TrieIdGenerator

pub trait TrieIdGenerator<AccountId> {
    pub fn trie_id(account_id: &AccountId) -> TrieId;
}

Get a trie id (trie id must be unique and collision resistant depending upon its context). Note that it is different than encode because trie id should be collision resistant (being a proper unique identifier).

Required methods

pub fn trie_id(account_id: &AccountId) -> TrieId[src]

Get a trie id for an account, using reference to parent account trie id to ensure uniqueness of trie id.

The implementation must ensure every new trie id is unique: two consecutive calls with the same parameter needs to return different trie id values.

Loading content...

Implementors

impl<T: Trait> TrieIdGenerator<<T as Trait>::AccountId> for TrieIdFromParentCounter<T> where
    T::AccountId: AsRef<[u8]>, 
[src]

This generator uses inner counter for account id and applies the hash over AccountId + accountid_counter.

Loading content...