Skip to content

Commit

Permalink
fix(protocol): call _disableInitializers in AddressResolver's constru…
Browse files Browse the repository at this point in the history
…ctor. (#16564)
  • Loading branch information
dantaik authored Mar 30, 2024
1 parent 1dd47cf commit f137077
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/protocol/contracts/common/AddressResolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ abstract contract AddressResolver is IAddressResolver, Initializable {
_;
}

constructor() {
_disableInitializers();
}

/// @inheritdoc IAddressResolver
function resolve(
bytes32 _name,
Expand Down

0 comments on commit f137077

Please sign in to comment.