mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-05-17 05:52:19 -04:00
remove expected warning when wallet is null
This commit is contained in:
parent
de5250e89a
commit
bd9c28fafa
1 changed files with 1 additions and 1 deletions
|
@ -1448,7 +1448,7 @@ public class XmrWalletService extends XmrWalletBase {
|
|||
try {
|
||||
syncWithProgress(true); // repeat sync to latest target height
|
||||
} catch (Exception e) {
|
||||
log.warn("Error syncing wallet with progress on startup: " + e.getMessage());
|
||||
if (wallet != null) log.warn("Error syncing wallet with progress on startup: " + e.getMessage());
|
||||
forceCloseMainWallet();
|
||||
requestSwitchToNextBestConnection(sourceConnection);
|
||||
maybeInitMainWallet(true, numSyncAttempts - 1); // re-initialize wallet and sync again
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue