Skip to content

Commit

Permalink
Remove adding locked stx balance to total balance (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
victorkirov authored Nov 4, 2024
1 parent d0febe6 commit 186d16d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/app/screens/home/balanceCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,7 @@ function BalanceCard(props: BalanceCardProps) {
const { data: runesCoinList } = useVisibleRuneFungibleTokens();

const balance = calculateTotalBalance({
stxBalance: BigNumber(stxData?.balance ?? 0)
.plus(stxData?.locked ?? 0)
.toString(),
stxBalance: BigNumber(stxData?.balance ?? 0).toString(),
btcBalance: (btcBalance ?? 0).toString(),
sipCoinsList: sip10CoinsList,
brcCoinsList: brc20CoinsList,
Expand Down

0 comments on commit 186d16d

Please sign in to comment.