我在这里看到了关于创建单个 Substrate 运行时模块的板条箱的 Substrate 教程,以便重用该功能,但我想知道是否有一种方法可以让一个自定义模块访问另一个自定义模块的存储或功能?
这些方面的东西:
/// In ModuleA
pub type IndexType = u64;
decl_storage! {
trait Store for Module<T: Trait> as ModuleA {
pub MyIndexCount get(my_index_count): Option<IndexType>;
}
}
然后在 ModuleB 内部 - 我需要做什么才能使用/包含 ModuleA 的功能,我该如何称呼它?
/// In ModuleB
decl_module! {
pub struct Module<T: Trait> for enum Call where origin: T::Origin {
fn deposit_event<T>() = default;
pub fn edit_index(origin) -> Result {
let sender = ensure_signed(origin)?;
// --->>>> I want to read some storage from ModuleA whilst inside ModuleB
let c: IndexType = ReadStorageFromModuleA >>> my_index_count().ok_or("Storage Read Error: cannot get index")?;
// change storage in ModuleA from ModuleB
WriteToStorageInModuleA <MyIndexCount<T>>::put(&c + 1);
Ok(())
}
}
}