-
Notifications
You must be signed in to change notification settings - Fork 422
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: attempt to fetch operation status in database upon relayer rest…
…art (#5182) ### Description - Add logic to retrieve message status from db before defaulting to `PendingOperationStatus::FirstPrepareAttempt`. - Add e2e tests to restart relayer and check message statuses were successfully read from db ### Drive-by changes - add `impl Default` to MerkleTreeBuilder to satisfy `clippy` ### Related issues - Fixes #5060 ### Backward compatibility Yes ### Testing - Add e2e tests to restart relayer and check message statuses were successfully read from db --------- Co-authored-by: Daniel Savu <[email protected]>
- Loading branch information
1 parent
878bb88
commit f250b19
Showing
8 changed files
with
328 additions
and
151 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pub mod msg; | ||
|
||
mod merkle_tree; | ||
mod msg; | ||
mod processor; | ||
mod prover; | ||
mod relayer; | ||
|
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 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
Oops, something went wrong.