lntypes: add preimage Matches method

This commit is contained in:
Joost Jager 2019-02-10 20:38:36 +01:00
parent 36cc1da8ea
commit 10a655b6b1
No known key found for this signature in database
GPG Key ID: A61B9D4C393C59C7

View File

@ -53,3 +53,8 @@ func MakePreimageFromStr(newPreimage string) (Preimage, error) {
func (p *Preimage) Hash() Hash {
return Hash(sha256.Sum256(p[:]))
}
// Matches returns whether this preimage is the preimage of the given hash.
func (p *Preimage) Matches(h Hash) bool {
return h == p.Hash()
}