Skip to content

Commit

Permalink
Compiling plugin setup
Browse files Browse the repository at this point in the history
  • Loading branch information
brickpop committed Jan 23, 2025
1 parent 9746ee6 commit 5e72076
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/setup/LockToVotePluginSetup.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5e72076

Please sign in to comment.