-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display the reason for auto-disabling an open offer. #6952
Conversation
I created this PR as a result of numerous requests during the year, both via #6127 and Matrix chat. |
Looks like a great addition. I think the trade amount being higher than a user's Bisq's 'trade limit' settings is also a common reason why offers are not shown. |
Not true @pazza83. A user's offer is de-activated (a) while a user edits it. (b) if the trigger price is breached (c) if the fee validation fails. Indicating the reason for an auto-disable is a nice-to-have, but this PR has included two bug fixes which are higher priority, i.e. they fix issues that can cause failed trades. It would be disappointing if the bug fixes missed the |
Ok, thanks for clarifying. I was confused about how the trade limit setting works |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
@alvasw Thank you for reviewing this PR! :-) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
Fixes #6127. Users have complained that when fee validation flags & disables their offer, they have no idea why.
This PR adds a status which is shown to the UI when an offer has been disabled.
The disabled reason is shown in Open Offers via the shield icon tooltip and globally via a notification.
Reasons an offer can be flagged:
An offer can also become disabled if the user chooses a Trigger price #4998. This reason is also shown on the shield icon and notification.
Key features:
maker validation failed
.taker validation failed
.Bug Fix:
In prior releases, sometimes there would be a false flagging of the offer when checked at startup because the BSQ tx was not yet available. This PR includes a fix to postpone the initial check until a minute after the boostrapping.
Screenshots:
Fixes #6959