Skip to content

Commit

Permalink
Remove logs as per review
Browse files Browse the repository at this point in the history
  • Loading branch information
robsecord committed Jun 24, 2020
1 parent 0e4570b commit be7f4ec
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions contracts/periodic-prize-pool/InterestTracker.sol
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ abstract contract InterestTracker is AbstractYieldService {
}

function captureInterest() internal returns (uint256) {
// console.log("POKE!");
poke();
uint256 interest = newInterest;
newInterest = 0;
Expand Down Expand Up @@ -82,7 +81,6 @@ abstract contract InterestTracker is AbstractYieldService {

function poke() internal {
uint256 unaccountedBalance = _unaccountedBalance();
// console.log("poke() unaccounted: %s", unaccountedBalance);
if (unaccountedBalance > 0) {
_capture(unaccountedBalance);
newInterest = newInterest.add(unaccountedBalance);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ contract SingleRandomWinnerPrizeStrategy is Initializable, BaseRelayRecipient, S
uint256 requestId = rngRequestIds[address(prizePool)];
bytes32 randomNumber = rng.randomNumber(requestId);
uint256 prize = prizePool.awardPrize();
console.log("PRIZE IS %s", prize);
delete rngRequestIds[address(prizePool)];
if (prize > 0) {
TicketInterface ticket = prizePool.ticket();
Expand Down

0 comments on commit be7f4ec

Please sign in to comment.