-
Notifications
You must be signed in to change notification settings - Fork 83
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
Storing pre-interactions and Jit orders in quote metadata #3162
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mstrug
commented
Dec 13, 2024
@@ -244,7 +245,7 @@ pub enum FindQuoteError { | |||
NotFound(Option<QuoteId>), | |||
|
|||
#[error("quote does not match parameters")] | |||
ParameterMismatch(QuoteData), | |||
ParameterMismatch(Box<QuoteData>), |
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.
I had to add Box
because of clippy warning: https://rust-lang.github.io/rust-clippy/v0.0.212/index.html#large_enum_variant
squadgazzz
reviewed
Dec 13, 2024
squadgazzz
approved these changes
Dec 13, 2024
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.
LGTM
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Added storing of additional quote metadata: pre-interactions and jit orders.
Those data can be used for debugging/analysis of the quotes and orders executed by the winning auction.
Changes
Extended
QuoteMetadataV1
struct with new fields (vectors):pre_interactions
andjit_orders
.Extended
QuoteExecution
struct in trade finding quote with same fields asQuoteMetadataV1
.Added filling of
QuoteExecution
new fields from price estimation results and then moving them toQuoteMetadataV1
and storing in database as json.QuoteMetadataV1
. Otherwise this PR needs to be updated to use new type:QuoteMetadataV2
for properly handling version 1 data already stored in database.How to test
Existing tests. Also unit tests were updated to verify serializaion/deserialization of new fields.