diff --git a/contracts/contracts/strategies/uniswap/UniswapV3StrategyStorage.sol b/contracts/contracts/strategies/uniswap/UniswapV3StrategyStorage.sol index eb2e3862d7..eeb04e7569 100644 --- a/contracts/contracts/strategies/uniswap/UniswapV3StrategyStorage.sol +++ b/contracts/contracts/strategies/uniswap/UniswapV3StrategyStorage.sol @@ -153,6 +153,12 @@ abstract contract UniswapV3StrategyStorage is InitializableAbstractStrategy { // Future-proofing uint256[100] private __gap; + constructor() { + // Governor address is set on the proxy contract. There's no need to + // set a Governor for the implementation contract + _setGovernor(address(0)); + } + /*************************************** Modifiers ****************************************/