mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36: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
|
||||
public void walletNodeHistoryChanged(WalletNodeHistoryChangedEvent event) {
|
||||
WalletNode walletNode = event.getWalletNode(wallet);
|
||||
if(walletNode != null) {
|
||||
refreshHistory(AppController.getCurrentBlockHeight(), walletNode);
|
||||
if(wallet.isValid()) {
|
||||
WalletNode walletNode = event.getWalletNode(wallet);
|
||||
if(walletNode != null) {
|
||||
refreshHistory(AppController.getCurrentBlockHeight(), walletNode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue