Skip to content

Commit 486210d

Browse files
authored
chore: bump core dependency to v1.3.0 (#453)
**Motivation:** The core contracts had a release yesterday for the audit fixes from the cantina competition and we want to target this branch for the middleware audit **Modifications:** Bump dependency **Result:** Target the latest stable core release for testnet
1 parent 1f5e731 commit 486210d

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

lib/eigenlayer-contracts

Submodule eigenlayer-contracts updated 88 files

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)