diff options
author | Gav Wood <i@gavwood.com> | 2015-10-20 23:30:22 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-11-06 20:26:20 +0800 |
commit | a89fa9999400e8be775f757bd779eb4e025fd223 (patch) | |
tree | e0b87b10636623c4288c5533c708aaf9fd169c8d /test | |
parent | 48ffa087837e19fd1cfa006ccb0737f07e735f0b (diff) | |
download | dexon-solidity-a89fa9999400e8be775f757bd779eb4e025fd223.tar dexon-solidity-a89fa9999400e8be775f757bd779eb4e025fd223.tar.gz dexon-solidity-a89fa9999400e8be775f757bd779eb4e025fd223.tar.bz2 dexon-solidity-a89fa9999400e8be775f757bd779eb4e025fd223.tar.lz dexon-solidity-a89fa9999400e8be775f757bd779eb4e025fd223.tar.xz dexon-solidity-a89fa9999400e8be775f757bd779eb4e025fd223.tar.zst dexon-solidity-a89fa9999400e8be775f757bd779eb4e025fd223.zip |
New vocab.
Diffstat (limited to 'test')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 460396a8..700201aa 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)); |