Skip to content

Commit

Permalink
fix: add indexed params to dripper change events [N-01]
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarranzav committed Aug 22, 2022
1 parent 91a0219 commit 80cc2f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/reservoir/L1Reservoir.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ contract L1Reservoir is L1ReservoirV2Storage, Reservoir {
// Emitted when minDripInterval is updated
event MinDripIntervalUpdated(uint256 minDripInterval);
// Emitted when a new allowedDripper is added
event AllowedDripperAdded(address dripper);
event AllowedDripperAdded(address indexed dripper);
// Emitted when an allowedDripper is revoked
event AllowedDripperRevoked(address dripper);
event AllowedDripperRevoked(address indexed dripper);

/**
* @dev Checks that the sender is an indexer with stake on the Staking contract,
Expand Down

0 comments on commit 80cc2f2

Please sign in to comment.