Adjustments to Solidity compiler code for Function Hash

This commit is contained in:
Lefteris Karapetsas 2015-01-09 00:27:26 +01:00
parent 75cbd0c013
commit ea12af6074

View File

@ -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)