Skip to content

Commit

Permalink
✅ Adjust precision delta usdc reward calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
Flocqst committed Aug 27, 2024
1 parent e4d6166 commit 48a2b16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ contract StakingV2RewardCalculationTests is DefaultStakingV2Setup {
balance = kwenta.balanceOf(user1);
assertEq(balance, expectedRewards);
rewardsUsdc = usdc.balanceOf(user1);
assertApproxEqAbs(rewardsUsdc, expectedUsdcRewards, 10);
assertApproxEqAbs(rewardsUsdc, expectedUsdcRewards, 50);
}
}

Expand Down

0 comments on commit 48a2b16

Please sign in to comment.