diff options
Diffstat (limited to 'test/compilationTests/gnosis/Events/CategoricalEvent.sol')
-rw-r--r-- | test/compilationTests/gnosis/Events/CategoricalEvent.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/gnosis/Events/CategoricalEvent.sol b/test/compilationTests/gnosis/Events/CategoricalEvent.sol index fbd1d744..be2c81a7 100644 --- a/test/compilationTests/gnosis/Events/CategoricalEvent.sol +++ b/test/compilationTests/gnosis/Events/CategoricalEvent.sol @@ -48,6 +48,6 @@ contract CategoricalEvent is Event { constant returns (bytes32) { - return keccak256(collateralToken, oracle, outcomeTokens.length); + return keccak256(abi.encodePacked(collateralToken, oracle, outcomeTokens.length)); } } |