Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop committed Oct 14, 2024
1 parent 704a965 commit 857d87e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/bin/tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async fn main() -> anyhow::Result<()> {
let client = reqwest::Client::new();

let response = client
.post(&format!("{}/insertIdentity", args.sequencer_url))
.post(format!("{}/insertIdentity", args.sequencer_url))
.basic_auth(basic_auth_username, Some(basic_auth_password))
.json(&InsertCommitmentRequest {
identity_commitment,
Expand All @@ -167,7 +167,7 @@ async fn main() -> anyhow::Result<()> {
let client = reqwest::Client::new();

let response = client
.post(&format!("{}/inclusionProof", args.sequencer_url))
.post(format!("{}/inclusionProof", args.sequencer_url))
.json(&InclusionProofRequest {
identity_commitment,
})
Expand Down Expand Up @@ -199,7 +199,7 @@ async fn main() -> anyhow::Result<()> {
let client = reqwest::Client::new();

let response = client
.post(&format!("{}/verifySemaphoreProof", args.sequencer_url))
.post(format!("{}/verifySemaphoreProof", args.sequencer_url))
.json(&proof_request)
.send()
.await?;
Expand All @@ -218,7 +218,7 @@ async fn main() -> anyhow::Result<()> {
let client = reqwest::Client::new();

let response = client
.post(&format!("{}/inclusionProof", args.sequencer_url))
.post(format!("{}/inclusionProof", args.sequencer_url))
.json(&InclusionProofRequest {
identity_commitment: identity.commitment(),
})
Expand Down

0 comments on commit 857d87e

Please sign in to comment.