Skip to content

Commit 99e14da

Browse files
committed
clippy
1 parent 0eae188 commit 99e14da

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/katana/feeder-gateway/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition.workspace = true
3-
license-file.workspace = true
43
license.workspace = true
4+
license-file.workspace = true
55
name = "katana-feeder-gateway"
66
repository.workspace = true
77
version.workspace = true
@@ -12,7 +12,6 @@ katana-rpc-types.workspace = true
1212

1313
reqwest.workspace = true
1414
serde.workspace = true
15-
serde_json = "1.0.133"
1615
starknet.workspace = true
1716
thiserror.workspace = true
1817
url.workspace = true

crates/katana/feeder-gateway/src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ impl SequencerGateway {
112112
fn feeder_gateway(&self, method: &str) -> RequestBuilder<'_> {
113113
let mut url = self.base_url.clone();
114114
url.path_segments_mut().expect("invalid base url").extend(["feeder_gateway", method]);
115-
RequestBuilder { gateway_client: &self, url }
115+
RequestBuilder { gateway_client: self, url }
116116
}
117117
}
118118

0 commit comments

Comments
 (0)