aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/SolidityEndToEndTest.cpp
diff options
context:
space:
mode:
authorGav Wood <g@ethdev.com>2015-11-19 19:20:46 +0800
committerGav Wood <g@ethdev.com>2015-11-19 19:20:46 +0800
commit3be0ae6e2cff95239dab9b37c9722d55481e8b26 (patch)
tree111d1e96957b4e90619193aa4321cb60b3866f9f /test/libsolidity/SolidityEndToEndTest.cpp
parentb4e666ccf4fe39b0a1fc909b61daf6dc39e77fc4 (diff)
parent938b6793f1a555d8e98e949c8fd2a6838f0d6c43 (diff)
downloaddexon-solidity-3be0ae6e2cff95239dab9b37c9722d55481e8b26.tar.gz
dexon-solidity-3be0ae6e2cff95239dab9b37c9722d55481e8b26.tar.zst
dexon-solidity-3be0ae6e2cff95239dab9b37c9722d55481e8b26.zip
Merge pull request #204 from ethereum/hot_gav
The Big Refactor
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp
index 81543356..f2aa2e8e 100644
--- a/test/libsolidity/SolidityEndToEndTest.cpp
+++ b/test/libsolidity/SolidityEndToEndTest.cpp
@@ -1151,7 +1151,7 @@ BOOST_AUTO_TEST_CASE(blockchain)
" blockNumber = block.number;\n"
" }\n"
"}\n";
- m_envInfo.setBeneficiary(Address(0x123));
+ m_envInfo.setAuthor(Address(0x123));
m_envInfo.setNumber(7);
compileAndRun(sourceCode, 27);
BOOST_CHECK(callContractFunctionWithValue("someInfo()", 28) == encodeArgs(28, 0x123, 7));