Skip to content

Commit

Permalink
feat: return # of messages prioritized in the queue when calling mess…
Browse files Browse the repository at this point in the history
…age retry endpoint
  • Loading branch information
kamiyaa committed Jan 15, 2025
1 parent 28becff commit 5255925
Show file tree
Hide file tree
Showing 12 changed files with 519 additions and 104 deletions.
33 changes: 25 additions & 8 deletions rust/main/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions rust/main/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ typetag = "0.2"
uint = "0.9.5"
ureq = { version = "2.4", default-features = false }
url = "2.3"
uuid = { version = "1.12.0", features = ["v4"] }
walkdir = "2"
warp = "0.3"
which = "4.3"
Expand Down
3 changes: 3 additions & 0 deletions rust/main/agents/relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ tokio-metrics.workspace = true
tracing-futures.workspace = true
tracing.workspace = true
typetag.workspace = true
uuid.workspace = true

hyperlane-core = { path = "../../hyperlane-core", features = [
"agent",
Expand All @@ -53,8 +54,10 @@ hyperlane-base = { path = "../../hyperlane-base", features = ["test-utils"] }
hyperlane-ethereum = { path = "../../chains/hyperlane-ethereum" }

[dev-dependencies]
axum = { workspace = true, features = ["macros"] }
once_cell.workspace = true
mockall.workspace = true
tracing-test.workspace = true
tokio-test.workspace = true
hyperlane-test = { path = "../../hyperlane-test" }
hyperlane-base = { path = "../../hyperlane-base", features = ["test-utils"] }
Expand Down
3 changes: 2 additions & 1 deletion rust/main/agents/relayer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ mod msg;
mod processor;
mod prover;
mod relayer;
mod server;
mod settings;

pub mod server;

pub use msg::GAS_EXPENDITURE_LOG_MESSAGE;
pub use relayer::*;
Loading

0 comments on commit 5255925

Please sign in to comment.