No longer exposing retrieveValueFromStorage() as a public function

- plus small fix in EndToEndTests
This commit is contained in:
Lefteris Karapetsas
2015-01-29 13:34:07 +01:00
parent 1ea693f3ff
commit bdb4462673
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -916,7 +916,7 @@ BOOST_AUTO_TEST_CASE(multiple_elementary_accessors)
BOOST_CHECK(callContractFunction("name()") == encodeArgs("Celina"));
BOOST_CHECK(callContractFunction("a_hash()") == encodeArgs(dev::sha3(toBigEndian(u256(123)))));
BOOST_CHECK(callContractFunction("an_address()") == encodeArgs(toBigEndian(u160(0x1337))));
BOOST_CHECK(!(callContractFunction("super_secret_data()") == encodeArgs(42)));
BOOST_CHECK(callContractFunction("super_secret_data()") == bytes());
}
BOOST_AUTO_TEST_CASE(balance)