aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/numbers.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2016-04-05 02:42:48 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2016-04-05 02:42:48 +0800
commit8d8e2248b2eb66a67cd2292a952acc53f73ba01f (patch)
tree639b291205218d784abfb362a0ecc4671e997fdf /accounts/abi/numbers.go
parent3a2da31c3e20c0566068fe01125ab1c676d04392 (diff)
parenta306e17a26e96e383afe86a2f1cdfa2320ec0f2f (diff)
downloadgo-tangerine-8d8e2248b2eb66a67cd2292a952acc53f73ba01f.tar.gz
go-tangerine-8d8e2248b2eb66a67cd2292a952acc53f73ba01f.tar.zst
go-tangerine-8d8e2248b2eb66a67cd2292a952acc53f73ba01f.zip
Merge pull request #2396 from obscuren/abi-slices
abi: support for input and output slices & removed support for implicit type conversion
Diffstat (limited to 'accounts/abi/numbers.go')
-rw-r--r--accounts/abi/numbers.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/accounts/abi/numbers.go b/accounts/abi/numbers.go
index 02609d567..084701de5 100644
--- a/accounts/abi/numbers.go
+++ b/accounts/abi/numbers.go
@@ -117,8 +117,6 @@ func packNum(value reflect.Value, to byte) []byte {
// checks whether the given reflect value is signed. This also works for slices with a number type
func isSigned(v reflect.Value) bool {
switch v.Type() {
- case ubig_ts, big_ts, big_t, ubig_t:
- return true
case int_ts, int8_ts, int16_ts, int32_ts, int64_ts, int_t, int8_t, int16_t, int32_t, int64_t:
return true
}