mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Change log level
We iterate over all trades and messages, so it is expected that the msg which are not assigned to that trade fails. We need to change the handleDecryptedMessageWithPubKey to check first if the msg and trade matches, but that will be done in a dedicated PR.
This commit is contained in:
parent
a9f9e989a4
commit
c6b619688a
@ -124,7 +124,8 @@ public class CleanupMailboxMessages {
|
||||
if (peersPubKeyRing != null &&
|
||||
!message.getSignaturePubKey().equals(peersPubKeyRing.getSignaturePubKey())) {
|
||||
isValid = false;
|
||||
log.error("SignaturePubKey in message does not match the SignaturePubKey we have set for our trading peer.");
|
||||
// We iterate over all trades so it is expected that the msg which are not assigned to that trade fails.
|
||||
log.debug("SignaturePubKey in message does not match the SignaturePubKey we have set for our trading peer.");
|
||||
}
|
||||
return isValid;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user