aboutsummaryrefslogtreecommitdiffstats
path: root/test/liblll
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-12-06 05:11:31 +0800
committerchriseth <chris@ethereum.org>2018-12-06 05:51:49 +0800
commitbc6ddbdd09860542061baed8df993cb3dafaa406 (patch)
tree086050790c74a5d75eed165a545df11f9b554619 /test/liblll
parente8455c2a6d33abbebfe678fdaa1728311838e21a (diff)
downloaddexon-solidity-bc6ddbdd09860542061baed8df993cb3dafaa406.tar.gz
dexon-solidity-bc6ddbdd09860542061baed8df993cb3dafaa406.tar.zst
dexon-solidity-bc6ddbdd09860542061baed8df993cb3dafaa406.zip
Remove `w` parameter for toHex.
Diffstat (limited to 'test/liblll')
-rw-r--r--test/liblll/EndToEndTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/liblll/EndToEndTest.cpp b/test/liblll/EndToEndTest.cpp
index aad89b91..85ce65a1 100644
--- a/test/liblll/EndToEndTest.cpp
+++ b/test/liblll/EndToEndTest.cpp
@@ -1008,7 +1008,7 @@ BOOST_AUTO_TEST_CASE(sub_assemblies)
compileAndRun(sourceCode);
bytes ret = callFallback();
BOOST_REQUIRE(ret.size() == 32);
- u256 rVal = u256(toHex(ret, 2, HexPrefix::Add));
+ u256 rVal = u256(toHex(ret, HexPrefix::Add));
BOOST_CHECK(rVal != 0);
BOOST_CHECK(rVal < u256("0x10000000000000000000000000000000000000000"));
}