Skip to content

Commit 7b71adf

Browse files
committed
fix: console.log
1 parent 85c0f15 commit 7b71adf

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/sdk/accounts/AbstractCreditAccountsService.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,8 +411,6 @@ export abstract class AbstractCreditAccountService extends SDKConstruct {
411411
creditAccount: ca,
412412
});
413413

414-
console.log("CLOSE", this.sdk.parseMultiCall(routerCloseResult.calls));
415-
416414
const calls: Array<MultiCall> = [
417415
...(operation === "close" ? [] : priceUpdates),
418416
...routerCloseResult.calls,

src/sdk/accounts/CreditAccountsServiceV310.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,12 @@ export class CreditAccountServiceV310
109109
const addCollateral = collateralAssets.filter(a => a.balance > 0);
110110

111111
const router = this.sdk.routerFor(ca);
112-
// HERE
113112

114113
const claimPath = await router.findClaimAllRewards({
115114
calls: [],
116115
tokensToClaim,
117116
creditAccount: ca,
118117
});
119-
console.log("claimPath", this.sdk.parseMultiCall(claimPath.calls));
120118

121119
const priceUpdates = await this.getPriceUpdatesForFacade({
122120
creditManager: ca.creditManager,
@@ -156,15 +154,12 @@ export class CreditAccountServiceV310
156154
const cm = this.sdk.marketRegister.findCreditManager(ca.creditManager);
157155

158156
const router = this.sdk.routerFor(ca);
159-
// HERE
160157
const claimPath = await router.findClaimAllRewards({
161158
calls: [],
162159
tokensToClaim,
163160
creditAccount: ca,
164161
});
165162

166-
console.log("claimPath", this.sdk.parseMultiCall(claimPath.calls));
167-
168163
const priceUpdates = await this.getPriceUpdatesForFacade({
169164
creditManager: ca.creditManager,
170165
creditAccount: ca,

0 commit comments

Comments
 (0)