Skip to content

Commit

Permalink
[#4] Index event params: Safe address and module
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-ap committed Jun 30, 2023
1 parent 8935860 commit 9578e58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/SafeProtocolMediator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ contract SafeProtocolMediator is ISafeProtocolMediator {
}

// Events
event ActionsExecuted(address safe, bytes32 metaHash, uint256 nonce);
event RootAccessActionExecuted(address safe, bytes32 metaHash);
event ModuleEnabled(address safe, address module, bool allowRootAccess);
event ModuleDisabled(address safe, address module);
event ActionsExecuted(address indexed safe, bytes32 metaHash, uint256 nonce);
event RootAccessActionExecuted(address indexed safe, bytes32 metaHash);
event ModuleEnabled(address indexed safe, address indexed module, bool allowRootAccess);
event ModuleDisabled(address indexed safe, address indexed module);

// Errors
error ModuleRequiresRootAccess(address sender);
Expand Down

0 comments on commit 9578e58

Please sign in to comment.