You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/test/mocks/DelegationManagerMock.sol
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -75,19 +75,19 @@ contract DelegationManagerMock is IDelegationManager, Test {
75
75
return0;
76
76
}
77
77
78
-
function minWithdrawalDelayBlocks() externalviewreturns (uint256) {
78
+
function minWithdrawalDelayBlocks() externalpurereturns (uint256) {
79
79
return0;
80
80
}
81
81
82
82
/**
83
83
* @notice Minimum delay enforced by this contract per Strategy for completing queued withdrawals. Measured in blocks, and adjustable by this contract's owner,
84
84
* up to a maximum of `MAX_WITHDRAWAL_DELAY_BLOCKS`. Minimum value is 0 (i.e. no delay enforced).
85
85
*/
86
-
function strategyWithdrawalDelayBlocks(IStrategy /*strategy*/) externalviewreturns (uint256) {
86
+
function strategyWithdrawalDelayBlocks(IStrategy /*strategy*/) externalpurereturns (uint256) {
87
87
return0;
88
88
}
89
89
90
-
function getWithdrawalDelay(IStrategy[] calldata/*strategies*/) publicviewreturns (uint256) {
90
+
function getWithdrawalDelay(IStrategy[] calldata/*strategies*/) publicpurereturns (uint256) {
assertLt(withdrawalAmountGwei, MAX_RESTAKED_BALANCE_GWEI_PER_VALIDATOR, "Withdrawal amount should be greater than max restaked balance for this test");
850
849
@@ -859,7 +858,7 @@ contract EigenPodUnitTests_WithdrawalTests is EigenPodHarnessSetup, ProofParsing
0 commit comments