Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xStrobe committed Apr 6, 2023
1 parent 158ec31 commit 02bb3e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions liquidations/strike/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ const positions = async () => {
const positions = accounts.flatMap((account) => {
const _totalBorrowValueInUsd = totalBorrowValueInUsd(account, prices, "ethereum:");
const _totalCollateralValueInUsd = totalCollateralValueInUsd(account, prices, "ethereum:");
console.log('_totalBorrowValueInUsd', _totalBorrowValueInUsd)
console.log('_totalCollateralValueInUsd', _totalCollateralValueInUsd)
// console.log('_totalBorrowValueInUsd', _totalBorrowValueInUsd)
// console.log('_totalCollateralValueInUsd', _totalCollateralValueInUsd)

const debts = account.tokens
.filter((token) => {
Expand Down

0 comments on commit 02bb3e5

Please sign in to comment.