aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/numbers.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-12-08 06:24:41 +0800
committerFelix Lange <fjl@twurst.com>2015-12-08 06:24:41 +0800
commit38ff815485ce908f7430ff91fd39f0335cd35968 (patch)
treeafc09a4673eb6fa7b2c4c59f4210f884f8c61d53 /accounts/abi/numbers.go
parent659d6b9b7cc876660581482e876b6b8ceb6360c2 (diff)
parenta0bf2ea7e732b114518c3d8c66db337e0a7932f1 (diff)
downloadgo-tangerine-38ff815485ce908f7430ff91fd39f0335cd35968.tar.gz
go-tangerine-38ff815485ce908f7430ff91fd39f0335cd35968.tar.zst
go-tangerine-38ff815485ce908f7430ff91fd39f0335cd35968.zip
Merge pull request #2003 from obscuren/abi-calling
accounts/abi: added output parsing & added call mechanism
Diffstat (limited to 'accounts/abi/numbers.go')
-rw-r--r--accounts/abi/numbers.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/accounts/abi/numbers.go b/accounts/abi/numbers.go
index 2a7049425..c37cd5f68 100644
--- a/accounts/abi/numbers.go
+++ b/accounts/abi/numbers.go
@@ -37,6 +37,8 @@ var int8_t = reflect.TypeOf(int8(0))
var int16_t = reflect.TypeOf(int16(0))
var int32_t = reflect.TypeOf(int32(0))
var int64_t = reflect.TypeOf(int64(0))
+var hash_t = reflect.TypeOf(common.Hash{})
+var address_t = reflect.TypeOf(common.Address{})
var uint_ts = reflect.TypeOf([]uint(nil))
var uint8_ts = reflect.TypeOf([]uint8(nil))