Skip to content

Commit

Permalink
Merge pull request #1102 from get10101/chore/log-fix
Browse files Browse the repository at this point in the history
fix: it was printing the type but not the balance as intented
  • Loading branch information
1010Tom authored Aug 15, 2023
2 parents 5371fba + 6cbc894 commit 75d64db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/features/wallet/share_invoice_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class _ShareInvoiceScreenState extends State<ShareInvoiceScreen> {
WalletInfo info = context.watch<WalletChangeNotifier>().walletInfo;
final bridge.Config config = context.read<bridge.Config>();

FLog.debug(text: "Refresh receive screen: ${info.balances.onChain}");
FLog.debug(text: "Refresh receive screen: ${formatSats(info.balances.onChain)}");

const EdgeInsets buttonSpacing = EdgeInsets.symmetric(vertical: 8.0, horizontal: 24.0);

Expand Down

0 comments on commit 75d64db

Please sign in to comment.