diff --git a/src/main/java/com/sparrowwallet/sparrow/wallet/UtxosController.java b/src/main/java/com/sparrowwallet/sparrow/wallet/UtxosController.java index e76960d8..a17802af 100644 --- a/src/main/java/com/sparrowwallet/sparrow/wallet/UtxosController.java +++ b/src/main/java/com/sparrowwallet/sparrow/wallet/UtxosController.java @@ -149,6 +149,11 @@ public class UtxosController extends WalletFormController implements Initializab walletHistoryStatus(new WalletHistoryStatusEvent(walletForm.getWallet(), false)); } + @Subscribe + private void connectionFailed(ConnectionFailedEvent event) { + walletHistoryStatus(new WalletHistoryStatusEvent(walletForm.getWallet(), false)); + } + @Subscribe public void walletUtxoStatusChanged(WalletUtxoStatusChangedEvent event) { if(event.getWallet().equals(getWalletForm().getWallet())) {