aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-17 06:10:26 +0800
committerobscuren <geffobscura@gmail.com>2015-03-17 06:10:26 +0800
commit843db4978e876674ca111706880a58c84202880d (patch)
tree6d565f14ae8ed2524c73e478e301891c4d86436e /common
parent4e181c5764b78193705f91d3220710bb63b8962f (diff)
downloadgo-tangerine-843db4978e876674ca111706880a58c84202880d.tar
go-tangerine-843db4978e876674ca111706880a58c84202880d.tar.gz
go-tangerine-843db4978e876674ca111706880a58c84202880d.tar.bz2
go-tangerine-843db4978e876674ca111706880a58c84202880d.tar.lz
go-tangerine-843db4978e876674ca111706880a58c84202880d.tar.xz
go-tangerine-843db4978e876674ca111706880a58c84202880d.tar.zst
go-tangerine-843db4978e876674ca111706880a58c84202880d.zip
updated blockpool
Diffstat (limited to 'common')
-rw-r--r--common/types.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/types.go b/common/types.go
index 267077f4f..9729378e8 100644
--- a/common/types.go
+++ b/common/types.go
@@ -24,6 +24,7 @@ func BytesToHash(b []byte) Hash {
}
func StringToHash(s string) Hash { return BytesToHash([]byte(s)) }
func BigToHash(b *big.Int) Hash { return BytesToHash(b.Bytes()) }
+func HexToHash(s string) Hash { return BytesToHash(FromHex(s)) }
// Don't use the default 'String' method in case we want to overwrite
@@ -62,11 +63,13 @@ func BytesToAddress(b []byte) Address {
}
func StringToAddress(s string) Address { return BytesToAddress([]byte(s)) }
func BigToAddress(b *big.Int) Address { return BytesToAddress(b.Bytes()) }
+func HexToAddress(s string) Address { return BytesToAddress(FromHex(s)) }
// Get the string representation of the underlying address
func (a Address) Str() string { return string(a[:]) }
func (a Address) Bytes() []byte { return a[:] }
func (a Address) Big() *big.Int { return Bytes2Big(a[:]) }
+func (a Address) Hash() Hash { return BytesToHash(a[:]) }
// Sets the address to the value of b. If b is larger than len(a) it will panic
func (a *Address) SetBytes(b []byte) {