diff options
author | chriseth <chris@ethereum.org> | 2018-07-03 06:33:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-03 06:33:17 +0800 |
commit | 4649f9202a93f7573d7fb425fbcbdd50e6d4407c (patch) | |
tree | c392fe25bfc32af41f69744309df9b541953a002 /test/compilationTests/gnosis/Events/ScalarEvent.sol | |
parent | f5e1cf7753bb6a87f5a9a11db6a497dc4b2ccca5 (diff) | |
parent | 9d23fd80130ca1d020cf3ba494751fd5e3aa5fde (diff) | |
download | dexon-solidity-4649f9202a93f7573d7fb425fbcbdd50e6d4407c.tar dexon-solidity-4649f9202a93f7573d7fb425fbcbdd50e6d4407c.tar.gz dexon-solidity-4649f9202a93f7573d7fb425fbcbdd50e6d4407c.tar.bz2 dexon-solidity-4649f9202a93f7573d7fb425fbcbdd50e6d4407c.tar.lz dexon-solidity-4649f9202a93f7573d7fb425fbcbdd50e6d4407c.tar.xz dexon-solidity-4649f9202a93f7573d7fb425fbcbdd50e6d4407c.tar.zst dexon-solidity-4649f9202a93f7573d7fb425fbcbdd50e6d4407c.zip |
Merge pull request #4397 from ethereum/dropConstantKeywordTests
Test updates for dropping the constant keyword.
Diffstat (limited to 'test/compilationTests/gnosis/Events/ScalarEvent.sol')
-rw-r--r-- | test/compilationTests/gnosis/Events/ScalarEvent.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/gnosis/Events/ScalarEvent.sol b/test/compilationTests/gnosis/Events/ScalarEvent.sol index d5cbef14..832c2ab1 100644 --- a/test/compilationTests/gnosis/Events/ScalarEvent.sol +++ b/test/compilationTests/gnosis/Events/ScalarEvent.sol @@ -79,7 +79,7 @@ contract ScalarEvent is Event { /// @return Event hash function getEventHash() public - constant + view returns (bytes32) { return keccak256(abi.encodePacked(collateralToken, oracle, lowerBound, upperBound)); |