diff --git a/app/lib/screens/wallets/transactions.dart b/app/lib/screens/wallets/transactions.dart index ff4cf4b77..6c331b00e 100644 --- a/app/lib/screens/wallets/transactions.dart +++ b/app/lib/screens/wallets/transactions.dart @@ -55,8 +55,15 @@ class _WalletTransactionsWidgetState extends State { @override void initState() { - _listTransactions(); super.initState(); + if (widget.wallet.stellarBalance != '-1') { + _listTransactions(); + } else { + setState(() { + loading = false; + transactions = []; + }); + } } @override