Skip to content

Commit

Permalink
fix: storage gap
Browse files Browse the repository at this point in the history
  • Loading branch information
ypatil12 committed Oct 1, 2024
1 parent 159af29 commit f1c811c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/contracts/core/AllocationManagerStorage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
}

0 comments on commit f1c811c

Please sign in to comment.