Only warn on duplicate foreign compensation requests

This commit is contained in:
sqrrm 2018-02-13 14:02:40 +01:00
parent d06746e78b
commit 3fdb4fb860
No known key found for this signature in database
GPG key ID: 45235F9EF87089EC

View file

@ -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.");
}
}