Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Jan 8, 2024
1 parent 75110e5 commit 31046a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3"

services:
gatewayd:
image: fedimint/gatewayd:v0.2.1-rc2
image: fedimint/gatewayd:v0.2.1
command: gatewayd lnd
environment:
# Path to folder containing gateway config and data files
Expand Down
4 changes: 2 additions & 2 deletions src/client/src/views/dashboard/widgets/lightning/balances.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useNodeBalances } from '../../../../hooks/UseNodeBalances';
import { unSelectedNavButton } from '../../../../styles/Themes';
import styled from 'styled-components';
import Big from 'big.js';
import { useGatewayEcashTotal } from '../../../../hooks/UseGatewayEcashTotal';
import { useGatewayEcashTotalSats } from '../../../../hooks/UseGatewayEcashTotal';

const S = {
wrapper: styled.div`
Expand Down Expand Up @@ -85,7 +85,7 @@ export const ChainBalance = () => {
};

export const FedimintBalance = () => {
const totalFedimintEcash = useGatewayEcashTotal();
const totalFedimintEcash = useGatewayEcashTotalSats();

return (
<S.wrapper>
Expand Down

0 comments on commit 31046a7

Please sign in to comment.