File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ contract GnosisSafe
2121
2222 using GnosisSafeMath for uint256 ;
2323
24- string public constant VERSION = "1.2 .0 " ;
24+ string public constant VERSION = "1.3 .0 " ;
2525
2626 // keccak256(
2727 // "EIP712Domain(uint256 chainId,address verifyingContract)"
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ pragma solidity >=0.7.0 <0.9.0;
77contract HandlerContext {
88
99 // This function does not rely on a trusted forwarder. Use the returned value only to check information against the calling manager.
10+ /// @notice This is only reliable in combination with a FallbackManager that supports this (e.g. Safe contract >=1.3.0).
11+ /// When using this functionality make sure that the linked _manager (aka msg.sender) supports this.
1012 function _msgSender () internal pure returns (address sender ) {
1113 // The assembly code is more direct than the Solidity version using `abi.decode`.
1214 assembly { sender := shr (96 , calldataload (sub (calldatasize (), 20 ))) }
You can’t perform that action at this time.
0 commit comments