diff options
author | Gav Wood <i@gavwood.com> | 2015-07-16 07:29:03 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-07-17 19:48:50 +0800 |
commit | dbbe46586a1747f402d0f5917ca731b1e61f936b (patch) | |
tree | 89d5e87bc367ea482bb9e91354fc241616f87f40 /libsolidity/SolidityEndToEndTest.cpp | |
parent | 33392f30fa95b52b9220db127dfdb4ebd13fb1d8 (diff) | |
download | dexon-solidity-dbbe46586a1747f402d0f5917ca731b1e61f936b.tar dexon-solidity-dbbe46586a1747f402d0f5917ca731b1e61f936b.tar.gz dexon-solidity-dbbe46586a1747f402d0f5917ca731b1e61f936b.tar.bz2 dexon-solidity-dbbe46586a1747f402d0f5917ca731b1e61f936b.tar.lz dexon-solidity-dbbe46586a1747f402d0f5917ca731b1e61f936b.tar.xz dexon-solidity-dbbe46586a1747f402d0f5917ca731b1e61f936b.tar.zst dexon-solidity-dbbe46586a1747f402d0f5917ca731b1e61f936b.zip |
All fields of BlockInfo now private.
Diffstat (limited to 'libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r-- | libsolidity/SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/SolidityEndToEndTest.cpp b/libsolidity/SolidityEndToEndTest.cpp index d4454514..4a6507cd 100644 --- a/libsolidity/SolidityEndToEndTest.cpp +++ b/libsolidity/SolidityEndToEndTest.cpp @@ -1188,7 +1188,7 @@ BOOST_AUTO_TEST_CASE(now) { char const* sourceCode = "contract test {\n" " function someInfo() returns (bool success) {\n" - " return block.timestamp == now && now > 0;\n" + " return block.timestamp() == now && now > 0;\n" " }\n" "}\n"; compileAndRun(sourceCode); |