mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-01-12 07:49:51 -05:00
new dispute state is considered open
This commit is contained in:
parent
59d8a8ee44
commit
86e67d384c
@ -467,7 +467,7 @@ public final class Dispute implements NetworkPayload, PersistablePayload {
|
||||
}
|
||||
|
||||
public boolean isOpen() {
|
||||
return this.disputeState == State.OPEN || this.disputeState == State.REOPENED;
|
||||
return isNew() || this.disputeState == State.OPEN || this.disputeState == State.REOPENED;
|
||||
}
|
||||
|
||||
public boolean isClosed() {
|
||||
|
Loading…
Reference in New Issue
Block a user