diff --git a/lib/receive/receive_page.dart b/lib/receive/receive_page.dart index 70c8b20d..cbfea9ea 100644 --- a/lib/receive/receive_page.dart +++ b/lib/receive/receive_page.dart @@ -1131,14 +1131,14 @@ class _ReceiveDisplayAddressState extends State { child: const ListTile( leading: Icon(Icons.warning, color: Colors.orange), title: Text( - 'Payjoin transactions', + 'Payjoin', style: TextStyle( fontWeight: FontWeight.bold, color: Colors.black, ), ), subtitle: Text( - 'Wallet does not meet the criteria', + 'To receive with Payjoin, your wallet must already hold Bitcoin', style: TextStyle(color: Colors.black87), ), ), diff --git a/lib/wallet/bloc/wallet_bloc.dart b/lib/wallet/bloc/wallet_bloc.dart index 8bb884ba..5ff30329 100644 --- a/lib/wallet/bloc/wallet_bloc.dart +++ b/lib/wallet/bloc/wallet_bloc.dart @@ -392,11 +392,7 @@ class WalletBloc extends Bloc { } case UpdateWalletTypes.utxos: - if (eventWallet.utxos.isNotEmpty) { - storageWallet = storageWallet!.copyWith( - utxos: eventWallet.utxos, - ); - } + storageWallet = storageWallet!.copyWith(utxos: eventWallet.utxos); case UpdateWalletTypes.settings: if (eventWallet.backupTested != storageWallet!.backupTested) {