Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
k1rill-fedoseev committed Sep 27, 2024
1 parent e5346d4 commit f72c41d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion blockscout-ens/bens-logic/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pub async fn mocked_blockscout_client() -> BlockscoutClient {
let mock_server = MockServer::start().await;
for (tx_hash, tx) in TXNS.iter() {
let mock =
Mock::given(method("GET")).and(path(&format!("/api/v2/transactions/{tx_hash:#x}")));
Mock::given(method("GET")).and(path(format!("/api/v2/transactions/{tx_hash:#x}")));
mock.respond_with(ResponseTemplate::new(200).set_body_json(tx))
.mount(&mock_server)
.await;
Expand Down
8 changes: 4 additions & 4 deletions eth-bytecode-db/Cargo.lock

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

0 comments on commit f72c41d

Please sign in to comment.