From a68b567a043f95caaf5e13d4c2602db2946d2c99 Mon Sep 17 00:00:00 2001 From: microwavedcola1 Date: Thu, 22 Aug 2024 10:21:01 +0200 Subject: [PATCH] Fixes from review Signed-off-by: microwavedcola1 --- ts/client/src/accounts/mangoAccount.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ts/client/src/accounts/mangoAccount.ts b/ts/client/src/accounts/mangoAccount.ts index 349d99bd4..a7b5303ca 100644 --- a/ts/client/src/accounts/mangoAccount.ts +++ b/ts/client/src/accounts/mangoAccount.ts @@ -354,13 +354,6 @@ export class MangoAccount { public getTokenInUseCount(bank: Bank): number { const tp = this.getToken(bank.tokenIndex); - if ( - this.publicKey.equals( - new PublicKey('HBVZhx5hEaeANvDdd6pPMzAPoPjk8Gxm6uEUM5xrje6p'), - ) - ) { - console.log(tp); - } return tp?.inUseCount ?? 0; }