mirror of
https://github.com/haveno-dex/haveno.git
synced 2026-01-07 02:25:28 -05:00
log warning on error importing multisig hex
This commit is contained in:
parent
dddf625949
commit
ec14db23a9
1 changed files with 2 additions and 0 deletions
|
|
@ -1252,8 +1252,10 @@ public abstract class Trade extends XmrWalletBase implements Tradable, Model {
|
|||
doImportMultisigHex();
|
||||
break;
|
||||
} catch (IllegalArgumentException | IllegalStateException e) {
|
||||
log.warn("Illegal error importing multisig hex for {} {} on attempt {}/{}: {}", getClass().getSimpleName(), getShortId(), i + 1, TradeProtocol.MAX_ATTEMPTS, e.getMessage());
|
||||
throw e;
|
||||
} catch (Exception e) {
|
||||
log.warn("Error importing multisig hex for {} {} on attempt {}/{}: {}", getClass().getSimpleName(), getShortId(), i + 1, TradeProtocol.MAX_ATTEMPTS, e.getMessage());
|
||||
if (isShutDownStarted && wallet == null) {
|
||||
log.warn("Aborting import of multisig hex for {} {} because shut down is started and wallet is closed", getClass().getSimpleName(), getShortId());
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue