We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1c0916 commit a30b41dCopy full SHA for a30b41d
core/src/main/java/haveno/core/offer/Offer.java
@@ -18,7 +18,6 @@
18
package haveno.core.offer;
19
20
import haveno.common.ThreadUtils;
21
-import haveno.common.UserThread;
22
import haveno.common.crypto.KeyRing;
23
import haveno.common.crypto.PubKeyRing;
24
import haveno.common.handlers.ErrorMessageHandler;
@@ -281,7 +280,7 @@ public ObjectProperty<Offer.State> stateProperty() {
281
280
}
282
283
public void setErrorMessage(String errorMessage) {
284
- UserThread.await(() -> errorMessageProperty.set(errorMessage));
+ errorMessageProperty.set(errorMessage);
285
286
287
0 commit comments