@@ -11,6 +11,8 @@ import {IPauserRegistry} from "eigenlayer-contracts/src/contracts/interfaces/IPa
11
11
import {ISemVerMixin} from "eigenlayer-contracts/src/contracts/interfaces/ISemVerMixin.sol " ;
12
12
13
13
contract AllocationManagerIntermediate is IAllocationManager {
14
+ mapping (address avs = > address avsRegistrar ) internal _avsRegistrar;
15
+
14
16
function initialize (
15
17
uint256 initialPausedStatus
16
18
) external virtual {}
@@ -201,12 +203,6 @@ contract AllocationManagerIntermediate is IAllocationManager {
201
203
202
204
function DEALLOCATION_DELAY () external pure virtual returns (uint32 ) {}
203
205
204
- function createRedistributingOperatorSets (
205
- address avs ,
206
- CreateSetParams[] calldata params ,
207
- address [] calldata redistributionRecipients
208
- ) external virtual {}
209
-
210
206
function getRedistributionRecipient (
211
207
OperatorSet memory operatorSet
212
208
) external pure virtual returns (address ) {}
@@ -215,10 +211,6 @@ contract AllocationManagerIntermediate is IAllocationManager {
215
211
OperatorSet memory operatorSet
216
212
) external pure virtual returns (uint256 ) {}
217
213
218
- function initialize (
219
- uint256 initialPausedStatus
220
- ) external virtual {}
221
-
222
214
function isOperatorRedistributable (
223
215
address operator
224
216
) external pure virtual returns (bool ) {}
@@ -244,12 +236,6 @@ contract AllocationManagerMock is AllocationManagerIntermediate {
244
236
return _DEALLOCATION_DELAY;
245
237
}
246
238
247
- function createRedistributingOperatorSets (
248
- address avs ,
249
- CreateSetParams[] calldata params ,
250
- address [] calldata redistributionRecipients
251
- ) external override {}
252
-
253
239
function getRedistributionRecipient (
254
240
OperatorSet memory /* operatorSet */
255
241
) external pure override returns (address ) {
0 commit comments