Skip to content

Commit

Permalink
fix(RNSDomainPrice): fix event TierOverridingUpdated
Browse files Browse the repository at this point in the history
  • Loading branch information
TuDo1403 committed Feb 23, 2024
1 parent 984ece9 commit 0c8cb00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RNSDomainPrice.sol
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ contract RNSDomainPrice is Initializable, AccessControlEnumerable, INSDomainPric
for (uint256 i; i < length;) {
inverseBitwise = ~uint8(tiers[i]);
_tierOverriding[lbHashes[i]] = inverseBitwise;
emit TierOverridingUpdated(operator, lbHashes[i], Tier(inverseBitwise));
emit TierOverridingUpdated(operator, lbHashes[i], tiers[i]);

unchecked {
++i;
Expand Down

0 comments on commit 0c8cb00

Please sign in to comment.