From 1e3dd61b57eabda436905ef2d2d7903c86204ff1 Mon Sep 17 00:00:00 2001 From: Craig Raw Date: Wed, 17 Feb 2021 13:57:11 +0200 Subject: [PATCH] followup --- .../com/sparrowwallet/sparrow/wallet/UtxosController.java | 5 +++++ 1 file changed, 5 insertions(+) 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())) {