Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Karrq committed Nov 27, 2024
1 parent 0b53b2e commit 4331e2c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions crates/verify/src/zksync/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ impl VerificationProvider for ZkVerificationProvider {
})
.await?;

let _ = sh_println!("Verification submitted successfully. Verification ID: {}", verification_id);
let _ = sh_println!(
"Verification submitted successfully. Verification ID: {}",
verification_id
);

self.check(VerifyCheckArgs {
id: verification_id.to_string(),
Expand Down Expand Up @@ -236,7 +239,8 @@ impl ZkVerificationProvider {

if resp.is_pending() || resp.is_queued() {
if retries >= max_retries {
let _ = sh_println!("Verification is still pending after {max_retries} retries.");
let _ =
sh_println!("Verification is still pending after {max_retries} retries.");
return Ok(resp);
}

Expand Down

0 comments on commit 4331e2c

Please sign in to comment.