Skip to content

Commit

Permalink
common: remove address.Hash footgun (#28228)
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe authored Sep 29, 2023
1 parent c5ff839 commit 1f9d672
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions common/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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[:]) }

Expand Down

0 comments on commit 1f9d672

Please sign in to comment.