-
Notifications
You must be signed in to change notification settings - Fork 108
Open
Labels
Milestone
Description
When we enforce a new version for trading, the user can still create and if the taker has the new version he can take the offer, but then it fails at the next trade message.
We also show the generic error popup instead of a more user friendly message.
We should:
- Don't allow to create an offer if version it too low
- Fail at the earliest trade message
- Use a user friendly popup instead of generic error popup
We have already a error popup for expected error cases as shown below. This should be used for the case the error is triggered in the protocol (not at create offer).
Using that code:
new Popup().headline(Res.get("bisqEasy.openTrades.atPeer.failure.popup.headline"))
.failure(Res.get("bisqEasy.openTrades.failure.popup.message.header"),
peersErrorMessage,
Res.get("bisqEasy.openTrades.failure.popup.message.footer"))
.show();
Reactions are currently unavailable