Skip to content

Commit

Permalink
861, remove useless code
Browse files Browse the repository at this point in the history
  • Loading branch information
PseudoElement committed Dec 27, 2024
1 parent 3b29c4e commit 1d46ef8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/app/core/services/tokens/tokens-store.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,6 @@ export class TokensStoreService {
}

public startBalanceCalculating(blockchain: AssetType): void {
console.log(
'%cSTART_BALANCE for ==> ',
'color: green; font-size: 30px;',
this.isBalanceAlreadyCalculatedForChain
);
if (this.isBalanceAlreadyCalculatedForChain[blockchain]) {
return;
}
Expand All @@ -179,7 +174,6 @@ export class TokensStoreService {

forkJoin([firstValueFrom(tokensList$), firstValueFrom(this.authService.currentUser$)])
.pipe(
first(),
debounceTime(500),
switchMap(([tokens, user]) => {
this._isBalanceLoading$[blockchain].next(true);
Expand Down

0 comments on commit 1d46ef8

Please sign in to comment.