Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan DesRosier committed Jun 29, 2023
1 parent 90536c8 commit 8892ac2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions test/PrizePool.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -653,9 +653,6 @@ contract PrizePoolTest is Test {
address recipient = makeAddr("recipient");
mockTwab(winner, 1);

console2.log("winner", winner);
console2.log("recipient", recipient);

vm.expectEmit();
emit ClaimedPrize(
address(this),
Expand Down
6 changes: 0 additions & 6 deletions test/invariants/TierCalculationInvariants.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ contract TierCalculationInvariants is Test {
harness.grandPrizePeriod()
);
uint bounds = 30;
console2.log(
"harness.averagePrizesPerDraw()",
harness.averagePrizesPerDraw(),
"estimatedPrizeCount",
estimatedPrizeCount
);
assertApproxEqAbs(
harness.averagePrizesPerDraw(),
estimatedPrizeCount,
Expand Down
1 change: 0 additions & 1 deletion test/invariants/helpers/DrawAccumulatorFuzzHarness.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ contract DrawAccumulatorFuzzHarness {

function add(uint64 _amount, uint8 _drawInc) public returns (bool) {
currentDrawId += (_drawInc / 16);
console2.log("currentDrawId", currentDrawId);
SD59x18 alpha = sd(0.9e18);
bool result = accumulator.add(_amount, currentDrawId, alpha);
totalAdded += _amount;
Expand Down

0 comments on commit 8892ac2

Please sign in to comment.