Browse Source

followup

terminal
Craig Raw 4 years ago
parent
commit
1e3dd61b57
  1. 5
      src/main/java/com/sparrowwallet/sparrow/wallet/UtxosController.java

5
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())) {

Loading…
Cancel
Save