Skip to content

Commit 833f4f6

Browse files
committed
Add indexed keyword to address event args in DelegatedManager, remove from bool
1 parent c2540a6 commit 833f4f6

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

contracts/manager/DelegatedManager.sol

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,47 +58,47 @@ contract DelegatedManager is Ownable {
5858
/* ============ Events ============ */
5959

6060
event MethodologistChanged(
61-
address _newMethodologist
61+
address indexed _newMethodologist
6262
);
6363

6464
event ExtensionAdded(
65-
address _extension
65+
address indexed _extension
6666
);
6767

6868
event ExtensionRemoved(
69-
address _extension
69+
address indexed _extension
7070
);
7171

7272
event ExtensionInitialized(
73-
address _extension
73+
address indexed _extension
7474
);
7575

7676
event OperatorAdded(
77-
address _operator
77+
address indexed _operator
7878
);
7979

8080
event OperatorRemoved(
81-
address _operator
81+
address indexed _operator
8282
);
8383

8484
event AllowedAssetAdded(
85-
address _asset
85+
address indexed _asset
8686
);
8787

8888
event AllowedAssetRemoved(
89-
address _asset
89+
address indexed _asset
9090
);
9191

9292
event UseAssetAllowlistUpdated(
93-
bool indexed _status
93+
bool _status
9494
);
9595

9696
event OwnerFeeSplitUpdated(
9797
uint256 _newFeeSplit
9898
);
9999

100100
event OwnerFeeRecipientUpdated(
101-
address _newFeeRecipient
101+
address indexed _newFeeRecipient
102102
);
103103

104104
/* ============ Modifiers ============ */
@@ -209,7 +209,7 @@ contract DelegatedManager is Ownable {
209209
}
210210

211211
/**
212-
* Initializes an added extension from PENDING to INITIALIZED state and adds to extension array. An
212+
* Initializes an added extension from PENDING to INITIALIZED state and adds to extension array. An
213213
* address can only enter a PENDING state if it is an enabled extension added by the manager. Only
214214
* callable by the extension itself, hence msg.sender is the subject of update.
215215
*/

0 commit comments

Comments
 (0)