Skip to content

Commit

Permalink
chore: remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathandiep committed Jun 21, 2024
1 parent 9e67dee commit d717cdb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/Quest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,6 @@ contract TestQuest is Test, TestUtils, Errors, Events {
function test_fuzz_claimReferralFees(uint96 timestamp, uint256 participants) public {
timestamp = uint96(bound(timestamp, START_TIME+10, END_TIME));
participants = bound(participants, 1, TOTAL_PARTICIPANTS);
// referralRewardFee = bound(referralRewardFee, 1, REFERRAL_REWARD_FEE);


vm.startPrank(admin);
// Transfer the appropriate amount of Reward tokens to the quest based on fuzzed participants
Expand Down Expand Up @@ -412,8 +410,6 @@ contract TestQuest is Test, TestUtils, Errors, Events {
function test_fuzz_claimReferralFees_withdrawAfterClaim(uint96 timestamp, uint256 participants) public {
timestamp = uint96(bound(timestamp, START_TIME+10, END_TIME));
participants = bound(participants, 1, TOTAL_PARTICIPANTS);
// referralRewardFee = bound(referralRewardFee, 1, REFERRAL_REWARD_FEE);


vm.startPrank(admin);
// Transfer the appropriate amount of Reward tokens to the quest based on fuzzed participants
Expand Down

0 comments on commit d717cdb

Please sign in to comment.