diff --git a/CHANGELOG.md b/CHANGELOG.md index c51fe7747..441d5658e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Next release +- fix: Gateway path fix - fix: instrumentation code - feat: block resource cap removed from the pending tick - fix: replace class hash issue resolved + gas fees issue resolved 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)) }