我正在尝试将未知数input_hash
与default_hash_value
我的运行时知道的未知数进行比较。
十六进制的 default_hash_value 是5198bfa9da6f9c9d22dd2b0ce301dde9fd3c5826a117705d3ffa415d83a6bde8
使用 Blake2 散列算法从 string 生成的A nice default hash
。
a) 我认为T::Hash
输入类型正确,但是...
b)如何default_hash_value
在我的运行时模块中进行编码,以便我可以按照以下方式进行比较:
if let default_hash_value = input_hash {
//... this is the default value do, something
} else {
//... this is not the default value, do something else
}
主要问题是编码已知值。