Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
gianbelinche committed Dec 19, 2024
1 parent bf2f818 commit 0b689f5
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions core/node/da_clients/src/eigen/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ impl Verifier {
}
let path = format!("./{}", point);
let path = Path::new(&path);
let mut file = File::create(path).await.map_err(|_| VerificationError::LinkError)?;
let mut file = File::create(path)
.await
.map_err(|_| VerificationError::LinkError)?;
let content = response
.bytes()
.await
Expand Down Expand Up @@ -145,13 +147,16 @@ impl Verifier {
"".to_string(),
)
});
let kzg = kzg_handle.await.map_err(|e| {
tracing::error!("Failed to setup KZG: {:?}", e);
VerificationError::KzgError
})?.map_err(|e| {
tracing::error!("Failed to setup KZG: {:?}", e);
VerificationError::KzgError
})?;
let kzg = kzg_handle
.await
.map_err(|e| {
tracing::error!("Failed to setup KZG: {:?}", e);
VerificationError::KzgError
})?
.map_err(|e| {
tracing::error!("Failed to setup KZG: {:?}", e);
VerificationError::KzgError
})?;

Ok(Self {
kzg,
Expand Down

0 comments on commit 0b689f5

Please sign in to comment.