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
Currently the frontend has to tell us that the backend should verify a quote by passing priceQuality: "verified" in the /quote request.
To easily enforce in the future that all quotes have been verified we need to make sure the backend is able to decide on its own which quotes to verify.
Details
We should start by verifying all quotes where from is not 0 and the price_quality is not fast.
This should only happen conditionally based on a CLI flag in case we encounter any issues and have to quickly revert back to the status quo.
The text was updated successfully, but these errors were encountered:
# Description
Mostly moves code around and introduces trait for trade verification
which will later be used for unit tests.
Also adds the `verified` flag to quotes but at this point this flag is
not yet used for anything.
## How to test
Originally part of #2271 and
changes were manually tested there.
CI
Fixes: #2310
Background
Currently the frontend has to tell us that the backend should verify a quote by passing
priceQuality: "verified"
in the/quote
request.To easily enforce in the future that all quotes have been verified we need to make sure the backend is able to decide on its own which quotes to verify.
Details
We should start by verifying all quotes where
from
is not0
and theprice_quality
is notfast
.This should only happen conditionally based on a CLI flag in case we encounter any issues and have to quickly revert back to the status quo.
The text was updated successfully, but these errors were encountered: