diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-09 07:27:26 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-09 07:27:26 +0800 |
commit | ea12af607442318516190a79af1ec94e4bb055fb (patch) | |
tree | cf60961bc704d206eb3d5147721c8941cca665e3 | |
parent | 75cbd0c013b7a414e0aafef951e5d216eeca2134 (diff) | |
download | dexon-solidity-ea12af607442318516190a79af1ec94e4bb055fb.tar dexon-solidity-ea12af607442318516190a79af1ec94e4bb055fb.tar.gz dexon-solidity-ea12af607442318516190a79af1ec94e4bb055fb.tar.bz2 dexon-solidity-ea12af607442318516190a79af1ec94e4bb055fb.tar.lz dexon-solidity-ea12af607442318516190a79af1ec94e4bb055fb.tar.xz dexon-solidity-ea12af607442318516190a79af1ec94e4bb055fb.tar.zst dexon-solidity-ea12af607442318516190a79af1ec94e4bb055fb.zip |
Adjustments to Solidity compiler code for Function Hash
-rw-r--r-- | SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityEndToEndTest.cpp b/SolidityEndToEndTest.cpp index e58d167f..ee233111 100644 --- a/SolidityEndToEndTest.cpp +++ b/SolidityEndToEndTest.cpp @@ -52,7 +52,7 @@ BOOST_AUTO_TEST_CASE(empty_contract) char const* sourceCode = "contract test {\n" "}\n"; compileAndRun(sourceCode); - BOOST_CHECK(callContractFunction("iam_not_there()", bytes()).empty()); + BOOST_CHECK(callContractFunction("i_am_not_there()", bytes()).empty()); } BOOST_AUTO_TEST_CASE(recursive_calls) |