Skip to content

Commit

Permalink
chore: cleanup console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
peterslany committed Jun 7, 2023
1 parent b7b597b commit f0d3b6e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/parachain/loans.ts
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,6 @@ export class DefaultLoansAPI implements LoansAPI {
lend: lendReward.toBig().gt(0) ? lendReward : null,
borrow: borrowReward.toBig().gt(0) ? borrowReward : null,
};
console.log(underlyingCurrency.ticker, "lend", lendReward.toString(), "borrow", borrowReward.toString());
totalRewards = totalRewards.add(lendReward).add(borrowReward);
}
return { total: totalRewards, perMarket: rewardsPerMarket };
Expand Down

0 comments on commit f0d3b6e

Please sign in to comment.