mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Fix uninitialized member variable payoutSuggestion.
This commit is contained in:
parent
7bb5bf6b8a
commit
bf6be8998d
1 changed files with 1 additions and 0 deletions
|
@ -127,6 +127,7 @@ public final class DisputeResult implements NetworkPayload {
|
|||
public DisputeResult(String tradeId, int traderId) {
|
||||
this.tradeId = tradeId;
|
||||
this.traderId = traderId;
|
||||
this.payoutSuggestion = PayoutSuggestion.CUSTOM_PAYOUT;
|
||||
}
|
||||
|
||||
public DisputeResult(String tradeId,
|
||||
|
|
Loading…
Add table
Reference in a new issue