예제 #1
0
파일: validator.go 프로젝트: intfrr/mindy
func (v *Validator) Hash() []byte {
	return wire.BinaryRipemd160(v)
}
예제 #2
0
파일: tx.go 프로젝트: intfrr/mindy
// 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)
}