From f1c811cef6a99c6630c0213b17d2efbdb04faadc Mon Sep 17 00:00:00 2001 From: Yash Patil Date: Tue, 1 Oct 2024 11:21:43 -0700 Subject: [PATCH] fix: storage gap --- src/contracts/core/AllocationManagerStorage.sol | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/contracts/core/AllocationManagerStorage.sol b/src/contracts/core/AllocationManagerStorage.sol index c6e34f2dc..879602d22 100644 --- a/src/contracts/core/AllocationManagerStorage.sol +++ b/src/contracts/core/AllocationManagerStorage.sol @@ -54,9 +54,6 @@ abstract contract AllocationManagerStorage is IAllocationManager { /// @notice Mapping: operator => strategy => operatorSet[] (encoded) to keep track of pending free magnitude for operatorSet from deallocations mapping(address => mapping(IStrategy => bytes32[])) internal _pendingDeallocationOperatorSets; - /// @notice Mapping: operator => strategy => operatorSet (encoded) => list of queuedDeallocation indices - // mapping(address => mapping(IStrategy => mapping(bytes32 => uint256[]))) internal _queuedDeallocationIndices; - /// @notice Mapping: operator => allocation delay (in seconds) for the operator. /// This determines how long it takes for allocations to take effect in the future. mapping(address => AllocationDelayInfo) internal _allocationDelayInfo; @@ -78,5 +75,5 @@ abstract contract AllocationManagerStorage is IAllocationManager { * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ - uint256[43] private __gap; + uint256[44] private __gap; }