Пример #1
0
func (v *Validator) Hash() []byte {
	return wire.BinaryRipemd160(v)
}
Пример #2
0
// This should match the leaf hashes of Block.Data.Hash()'s SimpleMerkleTree.
func TxID(chainID string, tx Tx) []byte {
	signBytes := acm.SignBytes(chainID, tx)
	return wire.BinaryRipemd160(signBytes)
}