mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-27 08:10:45 -04:00
DisputeOpenedMessage accepts null updated multisig hex
This commit is contained in:
parent
c197ffb282
commit
0251b49d61
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@
|
||||||
package haveno.core.support.dispute.messages;
|
package haveno.core.support.dispute.messages;
|
||||||
|
|
||||||
import haveno.common.app.Version;
|
import haveno.common.app.Version;
|
||||||
|
import haveno.common.proto.ProtoUtil;
|
||||||
import haveno.core.proto.CoreProtoResolver;
|
import haveno.core.proto.CoreProtoResolver;
|
||||||
import haveno.core.support.SupportType;
|
import haveno.core.support.SupportType;
|
||||||
import haveno.core.support.dispute.Dispute;
|
import haveno.core.support.dispute.Dispute;
|
||||||
|
@ -90,7 +91,7 @@ public final class DisputeOpenedMessage extends DisputeMessage {
|
||||||
proto.getUid(),
|
proto.getUid(),
|
||||||
messageVersion,
|
messageVersion,
|
||||||
SupportType.fromProto(proto.getType()),
|
SupportType.fromProto(proto.getType()),
|
||||||
proto.getUpdatedMultisigHex(),
|
ProtoUtil.stringOrNullFromProto(proto.getUpdatedMultisigHex()),
|
||||||
proto.hasPaymentSentMessage() ? PaymentSentMessage.fromProto(proto.getPaymentSentMessage(), messageVersion) : null);
|
proto.hasPaymentSentMessage() ? PaymentSentMessage.fromProto(proto.getPaymentSentMessage(), messageVersion) : null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue