mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-03-29 11:11:48 +01:00
dont refresh invalid wallets
This commit is contained in:
parent
dc8a8dd857
commit
32bc9f6a99
@ -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…
x
Reference in New Issue
Block a user