aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/numbers.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-11-20 20:45:37 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-11-25 19:23:29 +0800
commita0bf2ea7e732b114518c3d8c66db337e0a7932f1 (patch)
tree27a17d5772f47ce80ce80c4de80bd77928c544e9 /accounts/abi/numbers.go
parentb0fb48c389460193d9fc0a5118d79ff6dec48ce0 (diff)
downloadgo-tangerine-a0bf2ea7e732b114518c3d8c66db337e0a7932f1.tar.gz
go-tangerine-a0bf2ea7e732b114518c3d8c66db337e0a7932f1.tar.zst
go-tangerine-a0bf2ea7e732b114518c3d8c66db337e0a7932f1.zip
accounts/abi: added output parsing & added call mechanism
Added calling mechanism and return value parsing
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))