diff --git a/src/contracts/GPv2AllowListAuthentication.sol b/src/contracts/GPv2AllowListAuthentication.sol index 47d593e6..a2e14980 100644 --- a/src/contracts/GPv2AllowListAuthentication.sol +++ b/src/contracts/GPv2AllowListAuthentication.sol @@ -30,6 +30,13 @@ contract GPv2AllowListAuthentication is /// @dev Event emitted when a solver gets removed. event SolverRemoved(address solver); + /// @dev Contract constructor that disables initializers for the + /// implementation contract. + constructor() { + // Disable initializers for the implementation contract + _disableInitializers(); + } + /// @dev Initialize the manager to a value. /// /// This method is a contract initializer that is called exactly once after