Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 44ae0f8

Browse files
committedMay 26, 2025
chore: format
1 parent 7f42d85 commit 44ae0f8

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed
 

‎src/contracts/core/StrategyManager.sol

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,11 @@ contract StrategyManager is
210210
}
211211

212212
/// @inheritdoc IStrategyManager
213-
function decreaseBurnableShares(OperatorSet calldata operatorSet, uint256 slashId, uint256 index) public returns (uint256) {
213+
function decreaseBurnableShares(
214+
OperatorSet calldata operatorSet,
215+
uint256 slashId,
216+
uint256 index
217+
) public returns (uint256) {
214218
EnumerableMap.AddressToUintMap storage operatorSetBurnableShares =
215219
_operatorSetBurnableShares[operatorSet.key()][slashId];
216220

‎src/contracts/interfaces/IStrategyManager.sol

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,11 @@ interface IStrategyManager is IStrategyManagerErrors, IStrategyManagerEvents, IS
148148
* @param slashId The slash ID to burn shares in.
149149
* @param index The index of the strategy to burn shares in. Returns the amount of shares that were burned.
150150
*/
151+
<<<<<<< HEAD
151152
function decreaseBurnOrRedistributableShares(
153+
=======
154+
function decreaseBurnableShares(
155+
>>>>>>> b227d922 (chore: format)
152156
OperatorSet calldata operatorSet,
153157
uint256 slashId,
154158
uint256 index
@@ -163,6 +167,7 @@ interface IStrategyManager is IStrategyManagerErrors, IStrategyManagerEvents, IS
163167
function getBurnOrRedistributableShares(
164168
OperatorSet calldata operatorSet,
165169
uint256 slashId
170+
<<<<<<< HEAD
166171
) external view returns (IStrategy[] memory, uint256[] memory);
167172

168173
/**
@@ -189,6 +194,9 @@ interface IStrategyManager is IStrategyManagerErrors, IStrategyManagerEvents, IS
189194
OperatorSet calldata operatorSet,
190195
uint256 slashId
191196
) external view returns (uint256);
197+
=======
198+
) external view returns (IStrategy[] memory);
199+
>>>>>>> b227d922 (chore: format)
192200

193201
/**
194202
* @notice Owner-only function to change the `strategyWhitelister` address.

0 commit comments

Comments
 (0)
Please sign in to comment.