mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Only warn on duplicate foreign compensation requests
This commit is contained in:
parent
d06746e78b
commit
3fdb4fb860
1 changed files with 2 additions and 1 deletions
|
@ -230,7 +230,8 @@ public class CompensationRequestManager implements PersistedDataHost, BsqBlockCh
|
|||
if (storeLocally)
|
||||
compensationRequestsStorage.queueUpForSave(new CompensationRequestList(getAllRequests()), 500);
|
||||
} else {
|
||||
log.info("We already have an item with the same CompensationRequest.");
|
||||
if (!isMine(compensationRequestPayload))
|
||||
log.warn("We already have an item with the same CompensationRequest.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue