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:45:40 +0800 |
commit | 20be64f5999fc4848cdfc3c3dcce6136c9494a61 (patch) | |
tree | 89d5e87bc367ea482bb9e91354fc241616f87f40 /libsolidity/SolidityEndToEndTest.cpp | |
parent | 3f003c2344b0089af0cdb7e1ff197d95b5e9c356 (diff) | |
download | dexon-solidity-20be64f5999fc4848cdfc3c3dcce6136c9494a61.tar dexon-solidity-20be64f5999fc4848cdfc3c3dcce6136c9494a61.tar.gz dexon-solidity-20be64f5999fc4848cdfc3c3dcce6136c9494a61.tar.bz2 dexon-solidity-20be64f5999fc4848cdfc3c3dcce6136c9494a61.tar.lz dexon-solidity-20be64f5999fc4848cdfc3c3dcce6136c9494a61.tar.xz dexon-solidity-20be64f5999fc4848cdfc3c3dcce6136c9494a61.tar.zst dexon-solidity-20be64f5999fc4848cdfc3c3dcce6136c9494a61.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); |