We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fbb6ce commit 325814eCopy full SHA for 325814e
contracts/helpers/Blacklist.sol
@@ -9,10 +9,10 @@ contract Blacklist is Ownable {
9
10
constructor(address owner) Ownable(owner) {}
11
12
- event BlacklistAddress(address pool, bool isBlacklisted);
+ event BlacklistUpdated(address pool, bool isBlacklisted);
13
14
function toggleBlacklistAddress(address pool) external onlyOwner {
15
blacklisted[pool] = !blacklisted[pool];
16
- emit BlacklistAddress(pool, blacklisted[pool]);
+ emit BlacklistUpdated(pool, blacklisted[pool]);
17
}
18
0 commit comments