diff --git a/CHANGELOG.md b/CHANGELOG.md index 852abc649..92c5080b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Next release +- fix: Gateway path fix - feat: block resource cap removed from the pending tick - fix: replace class hash issue resolved + gas fees issue resolved - fix: trim hash of eth state was failing with 0x0 diff --git a/crates/client/gateway/server/src/router.rs b/crates/client/gateway/server/src/router.rs index 009863ee0..7ed9338c9 100644 --- a/crates/client/gateway/server/src/router.rs +++ b/crates/client/gateway/server/src/router.rs @@ -83,7 +83,7 @@ async fn gateway_router( path: &str, add_transaction_provider: Arc, ) -> Result, Infallible> { - match (req.method(), req.uri().path()) { + match (req.method(), path) { (&Method::POST, "gateway/add_transaction") => { Ok(handle_add_transaction(req, add_transaction_provider).await.unwrap_or_else(Into::into)) }