Skip to content

Commit

Permalink
fix: hostd add immature balance to sidenav
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfreska committed Aug 14, 2024
1 parent 5e1bffe commit bbfff2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/hostd/components/HostdAuthedLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export function HostdAuthedLayout(
wallet.data && {
spendable: new BigNumber(wallet.data.spendable),
confirmed: new BigNumber(wallet.data.confirmed),
immature: new BigNumber(wallet.data.immature),
unconfirmed: new BigNumber(wallet.data.unconfirmed),
}
}
Expand Down
1 change: 1 addition & 0 deletions libs/design-system/src/app/AppAuthedLayout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ type Props = {
unconfirmed: BigNumber
confirmed: BigNumber
spendable: BigNumber
immature?: BigNumber
}
scroll?: boolean
routes: {
Expand Down

0 comments on commit bbfff2f

Please sign in to comment.