Skip to content

Commit

Permalink
cleanup lint
Browse files Browse the repository at this point in the history
  • Loading branch information
owencraston committed Jan 16, 2025
1 parent 5d234b3 commit f86998f
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions app/selectors/multichain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ import { isMainNet } from '../util/networks';
import { isBtcMainnetAddress } from '../core/Multichain/utils';
import { isEvmAccountType } from '@metamask/keyring-api';
import { createDeepEqualSelector } from './util';
import Engine from '../core/Engine/Engine';

interface NativeTokenBalance {
balance: string;
Expand Down Expand Up @@ -309,13 +308,8 @@ export const selectMultichainIsMainnet = createSelector(
* @param state - Root redux state
* @returns - MultichainBalancesController state
*/
const selectMultichainBalancesControllerState = (state: RootState) => {
console.log(
'selectMultichainBalancesControllerState',
JSON.stringify(state.engine.backgroundState.MultichainBalancesController),
);
return state.engine.backgroundState.MultichainBalancesController;
};
const selectMultichainBalancesControllerState = (state: RootState) =>
state.engine.backgroundState.MultichainBalancesController;

export const selectMultichainBalances = createDeepEqualSelector(
selectMultichainBalancesControllerState,
Expand Down

0 comments on commit f86998f

Please sign in to comment.