Skip to content

Commit

Permalink
feat: removing console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
DrPresident committed Nov 21, 2024
1 parent 45d2e27 commit 57e129c
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/contracts/services/moneyMarket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,6 @@ function batchQueryMoneyMarketRewardPools$({
},
},
}));
console.error('shadejs reward pools batch queries', queries);

return batchQuery$({
contractAddress: queryRouterContractAddress,
Expand All @@ -789,12 +788,7 @@ function batchQueryMoneyMarketRewardPools$({
minBlockHeightValidationOptions,
blockHeight,
}).pipe(
map((response) => {
console.error('Parsing', JSON.stringify(response));
const x = parseBatchQueryMoneyMarketRewardPools(response);
console.error('Parsed', JSON.stringify(x));
return x;
}),
map((response) => parseBatchQueryMoneyMarketRewardPools(response)),
first(),
);
}
Expand Down

0 comments on commit 57e129c

Please sign in to comment.