pub trait ConfigStorage {
    // Required method
    fn fetch_config(&self, access_path: AccessPath) -> Option<Vec<u8>>;
}Expand description
Trait to be implemented by a storage type from which to read on-chain configs
pub trait ConfigStorage {
    // Required method
    fn fetch_config(&self, access_path: AccessPath) -> Option<Vec<u8>>;
}Trait to be implemented by a storage type from which to read on-chain configs