Commit b22d6d19 authored by zhiqiangxu's avatar zhiqiangxu Committed by GitHub

fix comment (#11303)

parent 79babb89
...@@ -211,7 +211,7 @@ contract Deploy is Deployer { ...@@ -211,7 +211,7 @@ contract Deploy is Deployer {
/// @notice Make a call from the Safe contract to an arbitrary address with arbitrary data /// @notice Make a call from the Safe contract to an arbitrary address with arbitrary data
function _callViaSafe(Safe _safe, address _target, bytes memory _data) internal { function _callViaSafe(Safe _safe, address _target, bytes memory _data) internal {
// This is the signature format used the caller is also the signer. // This is the signature format used when the caller is also the signer.
bytes memory signature = abi.encodePacked(uint256(uint160(msg.sender)), bytes32(0), uint8(1)); bytes memory signature = abi.encodePacked(uint256(uint160(msg.sender)), bytes32(0), uint8(1));
_safe.execTransaction({ _safe.execTransaction({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment