Merge branch 'haveno-dex:master' into haveno-reto

This commit is contained in:
boldsuck 2025-01-14 15:02:06 +01:00 committed by GitHub
commit 43b9731e24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 5 deletions

View file

@ -654,8 +654,7 @@ public final class XmrConnectionService {
private void onConnectionChanged(MoneroRpcConnection currentConnection) { private void onConnectionChanged(MoneroRpcConnection currentConnection) {
if (isShutDownStarted || !accountService.isAccountOpen()) return; if (isShutDownStarted || !accountService.isAccountOpen()) return;
if (currentConnection == null) { if (currentConnection == null) {
log.warn("Setting daemon connection to null"); log.warn("Setting daemon connection to null", new Throwable("Stack trace"));
Thread.dumpStack();
} }
synchronized (lock) { synchronized (lock) {
if (currentConnection == null) { if (currentConnection == null) {

View file

@ -211,10 +211,9 @@ public class ArbitratorProcessDepositRequest extends TradeTask {
// log error // log error
if (errorMessage != null) { if (errorMessage != null) {
log.warn("Sending deposit responses with error={}", errorMessage); log.warn("Sending deposit responses with error={}", errorMessage, new Throwable("Stack trace"));
Thread.dumpStack();
} }
// create deposit response // create deposit response
DepositResponse response = new DepositResponse( DepositResponse response = new DepositResponse(
trade.getOffer().getId(), trade.getOffer().getId(),