Skip to content

Commit

Permalink
Merge pull request #202 from yieldnest/bn-withdrawal-delay-tests
Browse files Browse the repository at this point in the history
Bn withdrawal delay tests
  • Loading branch information
hpmaxi authored Jan 27, 2025
2 parents 4aafd73 + e4060f8 commit 2a39365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/M3/WithdrawalsWithRewards-Scenario.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ contract M3WithdrawalsWithRewardsTest is Base {
_strategies[0] = IStrategy(0xbeaC0eeEeeeeEEeEeEEEEeeEEeEeeeEeeEEBEaC0); // beacon chain eth strat

// advance time to allow completion
vm.roll(block.number + 0); // delegationManager.getWithdrawalDelay(_strategies));
vm.roll(block.number + delegationManager.minWithdrawalDelayBlocks() + 1);
}

// complete queued withdrawals
Expand All @@ -210,7 +210,7 @@ contract M3WithdrawalsWithRewardsTest is Base {
_strategies[0] = IStrategy(0xbeaC0eeEeeeeEEeEeEEEEeeEEeEeeeEeeEEBEaC0); // beacon chain eth strat

// advance time to allow completion
vm.roll(block.number + 0); // delegationManager.getWithdrawalDelay(_strategies));
vm.roll(block.number + delegationManager.minWithdrawalDelayBlocks() + 1);
}


Expand Down

0 comments on commit 2a39365

Please sign in to comment.