diff options
author | Gav Wood <i@gavwood.com> | 2015-07-16 07:29:03 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-07-16 07:29:03 +0800 |
commit | 6f94b767ae36364e5fa4c347c450c2f52a579ee3 (patch) | |
tree | efd365224ad6ec23ae02d45eddacdc87cbee2eb2 /libsolidity/SolidityEndToEndTest.cpp | |
parent | 2cdbf807ca2ba5e1a5166cc784a19839a84f873e (diff) | |
download | dexon-solidity-6f94b767ae36364e5fa4c347c450c2f52a579ee3.tar dexon-solidity-6f94b767ae36364e5fa4c347c450c2f52a579ee3.tar.gz dexon-solidity-6f94b767ae36364e5fa4c347c450c2f52a579ee3.tar.bz2 dexon-solidity-6f94b767ae36364e5fa4c347c450c2f52a579ee3.tar.lz dexon-solidity-6f94b767ae36364e5fa4c347c450c2f52a579ee3.tar.xz dexon-solidity-6f94b767ae36364e5fa4c347c450c2f52a579ee3.tar.zst dexon-solidity-6f94b767ae36364e5fa4c347c450c2f52a579ee3.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 9f806347..be44ea00 100644 --- a/libsolidity/SolidityEndToEndTest.cpp +++ b/libsolidity/SolidityEndToEndTest.cpp @@ -1187,7 +1187,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); |