Skip to content

Commit

Permalink
Implement safe-global#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 20f1fc7 commit 0f26c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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 0f26c38

Please sign in to comment.