Skip to content

Commit

Permalink
added event emittance in constructor of upgradeable BlockList
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeyfuss committed Jan 26, 2023
1 parent ce4932a commit 678fe98
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/BlockListUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ abstract contract BlockListUpgradeable is Initializable, IBlockList {
/// @param blockListRegistryAddr - the initial BlockList Registry Address
function __BlockList_init_unchained(address blockListRegistryAddr) internal onlyInitializing {
blockListRegistry = IBlockListRegistry(blockListRegistryAddr);
emit BlockListRegistryUpdated(msg.sender, address(0), blockListRegistryAddr);
}

/*//////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 678fe98

Please sign in to comment.