common: remove address.Hash footgun (#28228)

pull/28070/head
Péter Szilágyi 12 months ago committed by GitHub
parent c5ff839fb2
commit 1f9d672df1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      common/types.go

@ -239,9 +239,6 @@ func (a Address) Cmp(other Address) int {
// Bytes gets the string representation of the underlying address.
func (a Address) Bytes() []byte { return a[:] }
// Hash converts an address to a hash by left-padding it with zeros.
func (a Address) Hash() Hash { return BytesToHash(a[:]) }
// Big converts an address to a big integer.
func (a Address) Big() *big.Int { return new(big.Int).SetBytes(a[:]) }

Loading…
Cancel
Save