Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Dec 3, 2024
1 parent 0eae188 commit 99e14da
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

3 changes: 1 addition & 2 deletions crates/katana/feeder-gateway/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition.workspace = true
license-file.workspace = true
license.workspace = true
license-file.workspace = true
name = "katana-feeder-gateway"
repository.workspace = true
version.workspace = true
Expand All @@ -12,7 +12,6 @@ katana-rpc-types.workspace = true

reqwest.workspace = true
serde.workspace = true
serde_json = "1.0.133"
starknet.workspace = true
thiserror.workspace = true
url.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/katana/feeder-gateway/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl SequencerGateway {
fn feeder_gateway(&self, method: &str) -> RequestBuilder<'_> {
let mut url = self.base_url.clone();
url.path_segments_mut().expect("invalid base url").extend(["feeder_gateway", method]);
RequestBuilder { gateway_client: &self, url }
RequestBuilder { gateway_client: self, url }
}
}

Expand Down

0 comments on commit 99e14da

Please sign in to comment.