Skip to content

Commit

Permalink
event ValidatorExited -> indexed owner (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabasco authored Nov 14, 2023
1 parent 0ab954e commit 8f5df42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/interfaces/ISSVClusters.sol
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,5 @@ interface ISSVClusters is ISSVNetworkCore {
* @param operatorIds The operator IDs managing the validator.
* @param publicKey The public key of the exiting validator.
*/
event ValidatorExited(address owner, uint64[] operatorIds, bytes indexed publicKey);
event ValidatorExited(address indexed owner, uint64[] operatorIds, bytes publicKey);
}
2 changes: 1 addition & 1 deletion test/helpers/gas-usage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const MAX_GAS_PER_GROUP: any = {
[GasGroup.DEPOSIT]: 77500,
[GasGroup.WITHDRAW_CLUSTER_BALANCE]: 94500,
[GasGroup.WITHDRAW_OPERATOR_BALANCE]: 64900,
[GasGroup.VALIDATOR_EXIT]: 41500,
[GasGroup.VALIDATOR_EXIT]: 42200,

[GasGroup.LIQUIDATE_CLUSTER_4]: 129300,
[GasGroup.LIQUIDATE_CLUSTER_7]: 170500,
Expand Down

0 comments on commit 8f5df42

Please sign in to comment.