Exemplo n.º 1
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)
}
Exemplo n.º 2
0
func (v *Validator) Hash() []byte {
	return wire.BinaryRipemd160(v)
}