Skip to content

Commit

Permalink
Assert withdrawal credential's balance
Browse files Browse the repository at this point in the history
  • Loading branch information
enriquefynn committed Nov 27, 2023
1 parent 5cc5aab commit 3fd9291
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/FeeRewardsManager.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ contract FeeRewardsTest is Test {
}
feeRewardsManager.batchCollectRewards(addrs);
assertEq(address(feeRewardsManager).balance, 280 ether);

for (uint256 i = 0; i < 100; ++i) {
assertEq(address(uint160(i + 100)).balance, 7.2 ether);
}
}

function testChangeDefaultFee() public {
Expand Down

0 comments on commit 3fd9291

Please sign in to comment.