mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 13:26:44 +00:00
dont refresh invalid wallets
This commit is contained in:
parent
dc8a8dd857
commit
32bc9f6a99
1 changed files with 5 additions and 3 deletions
|
@ -225,9 +225,11 @@ public class WalletForm {
|
||||||
|
|
||||||
@Subscribe
|
@Subscribe
|
||||||
public void walletNodeHistoryChanged(WalletNodeHistoryChangedEvent event) {
|
public void walletNodeHistoryChanged(WalletNodeHistoryChangedEvent event) {
|
||||||
WalletNode walletNode = event.getWalletNode(wallet);
|
if(wallet.isValid()) {
|
||||||
if(walletNode != null) {
|
WalletNode walletNode = event.getWalletNode(wallet);
|
||||||
refreshHistory(AppController.getCurrentBlockHeight(), walletNode);
|
if(walletNode != null) {
|
||||||
|
refreshHistory(AppController.getCurrentBlockHeight(), walletNode);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue