Skip to content

Commit 9f65669

Browse files
committed
chore: bump to correct commit
1 parent 54b2323 commit 9f65669

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

test/mocks/DelegationMock.sol

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,20 @@ contract DelegationIntermediate is IDelegationManager {
268268
return new bytes32[](0);
269269
}
270270

271+
function queuedWithdrawals(
272+
bytes32 withdrawalRoot
273+
) external view override returns (IDelegationManagerTypes.Withdrawal memory withdrawal) {
274+
return IDelegationManagerTypes.Withdrawal({
275+
staker: address(0),
276+
delegatedTo: address(0),
277+
withdrawer: address(0),
278+
nonce: 0,
279+
startBlock: 0,
280+
strategies: new IStrategy[](0),
281+
scaledShares: new uint256[](0)
282+
});
283+
}
284+
271285
function convertToDepositShares(
272286
address staker,
273287
IStrategy[] memory strategies,

0 commit comments

Comments
 (0)