Skip to content

Commit 325814e

Browse files
committed
Rename event
1 parent 3fbb6ce commit 325814e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/helpers/Blacklist.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ contract Blacklist is Ownable {
99

1010
constructor(address owner) Ownable(owner) {}
1111

12-
event BlacklistAddress(address pool, bool isBlacklisted);
12+
event BlacklistUpdated(address pool, bool isBlacklisted);
1313

1414
function toggleBlacklistAddress(address pool) external onlyOwner {
1515
blacklisted[pool] = !blacklisted[pool];
16-
emit BlacklistAddress(pool, blacklisted[pool]);
16+
emit BlacklistUpdated(pool, blacklisted[pool]);
1717
}
1818
}

0 commit comments

Comments
 (0)