Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add param name to mapping
  • Loading branch information
hiep-immutable committed Aug 29, 2024
commit b879470057ad3544c6d3075727601afab2af6ee5
2 changes: 1 addition & 1 deletion contracts/multicall/GuardedMulticaller2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ contract GuardedMulticaller2 is AccessControl, ReentrancyGuard, EIP712 {
}

/// @dev Mapping of reference to executed status
mapping(bytes32 => bool) private replayProtection;
mapping(bytes32 ref => bool executed) private replayProtection;

/// @dev Only those with MULTICALL_SIGNER_ROLE can generate valid signatures for execute function.
bytes32 public constant MULTICALL_SIGNER_ROLE = bytes32("MULTICALL_SIGNER_ROLE");
Expand Down