mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-01 11:16:11 -04:00
Remove maven target, cleanup
This commit is contained in:
parent
1f362d80a2
commit
2912a02185
3 changed files with 3 additions and 44 deletions
|
@ -97,8 +97,7 @@ public class TomP2PMessageService extends TomP2PService implements MessageServic
|
|||
else {
|
||||
log.info("sendMessage failed. We will try to send the message to the mailbox. Fault reason: " +
|
||||
futureDirect.failedReason());
|
||||
if (pubKeyRing != null)
|
||||
sendMailboxMessage(pubKeyRing, (SealedAndSignedMessage) encryptedMessage, listener);
|
||||
sendMailboxMessage(pubKeyRing, (SealedAndSignedMessage) encryptedMessage, listener);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -106,8 +105,7 @@ public class TomP2PMessageService extends TomP2PService implements MessageServic
|
|||
public void exceptionCaught(Throwable t) throws Exception {
|
||||
log.info("sendMessage failed with exception. We will try to send the message to the mailbox. Exception: "
|
||||
+ t.getMessage());
|
||||
if (pubKeyRing != null)
|
||||
sendMailboxMessage(pubKeyRing, (SealedAndSignedMessage) encryptedMessage, listener);
|
||||
sendMailboxMessage(pubKeyRing, (SealedAndSignedMessage) encryptedMessage, listener);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
@ -119,7 +117,6 @@ public class TomP2PMessageService extends TomP2PService implements MessageServic
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
private void sendMailboxMessage(PubKeyRing pubKeyRing, SealedAndSignedMessage message, SendMessageListener listener) {
|
||||
log.info("sendMailboxMessage called");
|
||||
mailboxService.addMessage(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue