-
Notifications
You must be signed in to change notification settings - Fork 97
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
chore: Eliminate the order class in post order #2469
Comments
This was referenced Mar 5, 2024
m-lord-renkse
added a commit
that referenced
this issue
Mar 5, 2024
…e quotes (#2477) # Description Do an `inner join` instead of `left join` in order not to have nullable quotes in case they do not exist. This query will be removed with #2469 # Changes Do an `inner join` instead of `left join` in order not to have nullable quotes in case they do not exist. This way it does not error in case of missing quote (it won't be counted, as it is a liquidity order anyway). ## How to test 1. CI 2. e2e
m-lord-renkse
added a commit
that referenced
this issue
Mar 7, 2024
m-lord-renkse
added a commit
that referenced
this issue
Mar 7, 2024
m-lord-renkse
added a commit
that referenced
this issue
Mar 7, 2024
m-lord-renkse
added a commit
that referenced
this issue
Mar 7, 2024
m-lord-renkse
added a commit
that referenced
this issue
Mar 7, 2024
m-lord-renkse
added a commit
that referenced
this issue
Mar 7, 2024
This issue has been marked as stale because it has been inactive a while. Please update this issue or it will be automatically closed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Background
Since all the orders are limit orders, eliminate the order class from the post order.
Keep the order class in the database as an internal class with:
limit
andmarket
. By doing this, we can easily count the number of reallimit
orders in order to limit the number of orders per user.Details
It has to be done:
market
orlimit
liquidity
class order from the database (migration needed to move them aslimit
order)Acceptance criteria
The changes are backwards compatible in behavior, but the API contract is changed. All the current tests must pass.
The text was updated successfully, but these errors were encountered: