diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-15 23:12:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-15 23:12:26 +0800 |
commit | 311c6f8a3fed5ac03ee4b442fd0f420072bc41b4 (patch) | |
tree | de823080f3704d7690fd7172c9742962b66baf3a /ethvm/common.go | |
parent | 266d21209478bdb8c89e1ffb95d7f0de34635968 (diff) | |
download | dexon-311c6f8a3fed5ac03ee4b442fd0f420072bc41b4.tar.gz dexon-311c6f8a3fed5ac03ee4b442fd0f420072bc41b4.tar.zst dexon-311c6f8a3fed5ac03ee4b442fd0f420072bc41b4.zip |
Fixed remote Arithmetic tests
Diffstat (limited to 'ethvm/common.go')
-rw-r--r-- | ethvm/common.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ethvm/common.go b/ethvm/common.go index 6854a5219..617a8279f 100644 --- a/ethvm/common.go +++ b/ethvm/common.go @@ -35,7 +35,8 @@ var ( LogTyPretty byte = 0x1 LogTyDiff byte = 0x2 - To256 = ethutil.To256 + U256 = ethutil.U256 + S256 = ethutil.S256 ) const MaxCallDepth = 1024 |