-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Autopilot can receive multiple solutions (#1909)
# Description Implements #1905 # Changes <!-- List of detailed changes (how the change is accomplished) --> - [x] Changes the solve/reveal/settle interface between `autopilot` and `driver`. Now the driver can send multiple solutions for a single auction for a single solver. As a consequence, each solution must have unique `id`, therefore `/reveal` and `/settle` requests must include `id` of the winning solution so the driver can know which one was selected as winner. - [x] A bit of renaming on the `autopilot` side to make things clearer and consistent. - [x] Reorganized the code on `driver` side for `/reveal` and `/settle` (separate `dto` files as we had for `/solve`). This is to be consistent, but also now when you look into driver api folder it's immediately seen which endpoints are there.
- Loading branch information
Showing
20 changed files
with
376 additions
and
196 deletions.
There are no files selected for viewing
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
mod revealed; | ||
mod solution; | ||
|
||
pub use {revealed::Revealed, solution::Solution}; |
Oops, something went wrong.