Skip to content

Commit

Permalink
change ISSM constructor to use avsDirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Apr 25, 2024
1 parent 574434b commit 524b1b3
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions contracts/src/IncredibleSquaringServiceManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,11 @@ contract IncredibleSquaringServiceManager is ServiceManagerBase {
}

constructor(
IDelegationManager _delegationManager,
IAVSDirectory _avsDirectory,
IRegistryCoordinator _registryCoordinator,
IStakeRegistry _stakeRegistry,
IIncredibleSquaringTaskManager _incredibleSquaringTaskManager
)
ServiceManagerBase(
_delegationManager,
_registryCoordinator,
_stakeRegistry
)
{
) ServiceManagerBase(_avsDirectory, _registryCoordinator, _stakeRegistry) {
incredibleSquaringTaskManager = _incredibleSquaringTaskManager;
}

Expand Down

0 comments on commit 524b1b3

Please sign in to comment.