misc: Removed the collectActionModule from the publicActProxy as it was not needed anymore

This commit is contained in:
vicnaum
2024-05-17 15:48:32 +02:00
parent 39ee4ea0e7
commit 90901fccc9
5 changed files with 5 additions and 24 deletions

View File

@@ -401,10 +401,7 @@ contract DeployFreshLensV2 is Script, ForkManagement, ArrayHelpers {
litAccessControl = LitAccessControl(address(litAccessControlProxy));
_logDeployedAddress(address(litAccessControl), 'LitAccessControl');
publicActProxy = new PublicActProxy({
lensHub: address(hub),
collectPublicationAction: address(collectPublicationAction)
});
publicActProxy = new PublicActProxy({lensHub: address(hub)});
_logDeployedAddress(address(publicActProxy), 'PublicActProxy');
}