mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
log error initializing main wallet
This commit is contained in:
parent
ccf2757418
commit
9062bc9159
@ -906,7 +906,13 @@ public class XmrWalletService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void maybeInitMainWallet(boolean sync) {
|
private void maybeInitMainWallet(boolean sync) {
|
||||||
maybeInitMainWallet(sync, MAX_SYNC_ATTEMPTS);
|
try {
|
||||||
|
maybeInitMainWallet(sync, MAX_SYNC_ATTEMPTS);
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.warn("Error initializing main wallet: " + e.getMessage());
|
||||||
|
e.printStackTrace();
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void maybeInitMainWallet(boolean sync, int numAttempts) {
|
private void maybeInitMainWallet(boolean sync, int numAttempts) {
|
||||||
|
Loading…
Reference in New Issue
Block a user