pub trait ConfigStorage {
    // Required method
    fn fetch_config(&self, access_path: AccessPath) -> Option<Vec<u8, Global>>;
}
Expand description

Trait to be implemented by a storage type from which to read on-chain configs

Required Methods§

fn fetch_config(&self, access_path: AccessPath) -> Option<Vec<u8, Global>>

Implementors§