You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Presently, a user has their open order tracked at both the order book level and at the market account level.
This schema introduces synchronization overhead, including global storage cost increases.
Alternatively, a user's market account could be updated to simply contain a vector of open order IDs: when an order is filled or cancelled, only the vector has to be updated. This reduces global borrows.
The text was updated successfully, but these errors were encountered:
Presently, a user has their open order tracked at both the order book level and at the market account level.
This schema introduces synchronization overhead, including global storage cost increases.
Alternatively, a user's market account could be updated to simply contain a vector of open order IDs: when an order is filled or cancelled, only the vector has to be updated. This reduces global borrows.
The text was updated successfully, but these errors were encountered: