显示包…
1 个稳定版本
2.0.0 | 2021 年 4 月 4 日 |
---|
#33 在 #tetcore
114 每月下载量
用于 12 个包 (3 个直接)
1MB
23K SLoC
随机性模块
随机性集体翻转模块提供了一个基于前 81
个区块的哈希生成低影响力的随机值 random
函数。在防御相对较弱的对手时,低影响力随机性可能很有用。建议在测试等低安全情况下使用贵族作为随机数源。
公共函数
有关公开函数的详细信息,请参阅 Module
结构。
用法
先决条件
导入随机性集体翻转模块,并从系统特质派生你的模块配置特质。
示例 - 获取当前块的随机种子
use fabric_support::{decl_module, dispatch, traits::Randomness};
pub trait Config: fabric_system::Config {}
decl_module! {
pub struct Module<T: Config> for enum Call where origin: T::Origin {
#[weight = 0]
pub fn random_module_example(origin) -> dispatch::DispatchResult {
let _random_value = <noble_randomness_collective_flip::Module<T>>::random(&b"my context"[..]);
Ok(())
}
}
}
许可证: Apache-2.0
依赖项
~3–12MB
~135K SLoC