aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/gnosis/Events/ScalarEvent.sol
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-03 06:33:17 +0800
committerGitHub <noreply@github.com>2018-07-03 06:33:17 +0800
commit4649f9202a93f7573d7fb425fbcbdd50e6d4407c (patch)
treec392fe25bfc32af41f69744309df9b541953a002 /test/compilationTests/gnosis/Events/ScalarEvent.sol
parentf5e1cf7753bb6a87f5a9a11db6a497dc4b2ccca5 (diff)
parent9d23fd80130ca1d020cf3ba494751fd5e3aa5fde (diff)
downloaddexon-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.sol2
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));