diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-04-05 02:42:48 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-04-05 02:42:48 +0800 |
commit | 8d8e2248b2eb66a67cd2292a952acc53f73ba01f (patch) | |
tree | 639b291205218d784abfb362a0ecc4671e997fdf /accounts/abi/numbers_test.go | |
parent | 3a2da31c3e20c0566068fe01125ab1c676d04392 (diff) | |
parent | a306e17a26e96e383afe86a2f1cdfa2320ec0f2f (diff) | |
download | go-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_test.go')
-rw-r--r-- | accounts/abi/numbers_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/accounts/abi/numbers_test.go b/accounts/abi/numbers_test.go index 78dc57543..6590e41a6 100644 --- a/accounts/abi/numbers_test.go +++ b/accounts/abi/numbers_test.go @@ -81,8 +81,4 @@ func TestSigned(t *testing.T) { if !isSigned(reflect.ValueOf(int(10))) { t.Error() } - - if !isSigned(reflect.ValueOf(big.NewInt(10))) { - t.Error() - } } |