diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-06 17:42:24 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-06 17:42:24 +0800 |
commit | 4b43f1b564e6f6cf88441646c56c598403e510dc (patch) | |
tree | 5e61c9b3726d85543de2d340b6f49f4722e83324 | |
parent | 1bf8660bdf9c126126737acebcf57f34ffb8c205 (diff) | |
download | dexon-solidity-4b43f1b564e6f6cf88441646c56c598403e510dc.tar dexon-solidity-4b43f1b564e6f6cf88441646c56c598403e510dc.tar.gz dexon-solidity-4b43f1b564e6f6cf88441646c56c598403e510dc.tar.bz2 dexon-solidity-4b43f1b564e6f6cf88441646c56c598403e510dc.tar.lz dexon-solidity-4b43f1b564e6f6cf88441646c56c598403e510dc.tar.xz dexon-solidity-4b43f1b564e6f6cf88441646c56c598403e510dc.tar.zst dexon-solidity-4b43f1b564e6f6cf88441646c56c598403e510dc.zip |
appendArgumentsCopyToMemory() has more complicated logic now
- Plus other fixes.
-rw-r--r-- | SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityEndToEndTest.cpp b/SolidityEndToEndTest.cpp index 824519fd..083f5502 100644 --- a/SolidityEndToEndTest.cpp +++ b/SolidityEndToEndTest.cpp @@ -2107,7 +2107,7 @@ BOOST_AUTO_TEST_CASE(sha3_multiple_arguments) })"; compileAndRun(sourceCode); - BOOST_CHECK(callContractFunction("foo(uint256,uint256,uint256)", 10 , 12, 13) == encodeArgs( + BOOST_CHECK(callContractFunction("foo(uint256,uint256,uint256)", 10, 12, 13) == encodeArgs( dev::sha3( toBigEndian(u256(10)) + toBigEndian(u256(12)) + |