cache wallet info last on poll

This commit is contained in:
woodser 2024-07-10 11:01:25 -04:00
parent a149d92392
commit 23a7fb3d16

View File

@ -1845,9 +1845,6 @@ public class XmrWalletService {
}
}
}
// cache wallet info
cacheWalletInfo();
} catch (Exception e) {
if (wallet == null || isShutDownStarted) return;
boolean isConnectionRefused = e.getMessage() != null && e.getMessage().contains("Connection refused");
@ -1857,6 +1854,15 @@ public class XmrWalletService {
//e.printStackTrace();
}
} finally {
// cache wallet info last
if (wallet != null && !isShutDownStarted) {
try {
cacheWalletInfo();
} catch (Exception e) {
e.printStackTrace();
}
}
pollInProgress = false;
}
}