Skip to content

Commit

Permalink
Implement #15: Add version byte for hashing
Browse files Browse the repository at this point in the history
  • Loading branch information
rmeissner committed Apr 16, 2018
1 parent c12c720 commit b14eb2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/GnosisSafe.sol
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ contract GnosisSafe {
view
returns (bytes32)
{
return keccak256(byte(0x19), this, to, value, data, operation, _nonce);
return keccak256(byte(0x19), byte(0), this, to, value, data, operation, _nonce);
}

/// @dev Returns array of owners.
Expand Down

0 comments on commit b14eb2c

Please sign in to comment.