diff --git a/src/setup/LockToVotePluginSetup.sol b/src/setup/LockToVotePluginSetup.sol index 461b5e5..e68ca01 100644 --- a/src/setup/LockToVotePluginSetup.sol +++ b/src/setup/LockToVotePluginSetup.sol @@ -65,7 +65,7 @@ contract LockToVotePluginSetup is PluginSetup { error WrongHelpersArrayLength(uint256 length); /// @notice The contract constructor deploying the implementation contracts to use. - constructor() { + constructor() PluginSetup(address(new LockToVotePlugin())) { lockManagerBase = new LockManager( IDAO(address(0)), LockManagerSettings(UnlockMode(0), PluginMode(0)), @@ -322,11 +322,6 @@ contract LockToVotePluginSetup is PluginSetup { }); } - /// @inheritdoc IPluginSetup - function implementation() public view virtual override returns (address) { - return address(lockToVotePluginBase); - } - /// @notice Encodes the given installation parameters into a byte array function encodeInstallationParams( InstallationParameters memory installationParams