Skip to content

Commit

Permalink
move comment location
Browse files Browse the repository at this point in the history
  • Loading branch information
juan518munoz committed Feb 6, 2025
1 parent 5137e4e commit fdccf95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/node/da_clients/src/eigen/sdk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ impl RawEigenClient {
.verifier
.verify_inclusion_data_against_settlement_layer(&blob_info)
.await;
// in case of an error, the dispatcher will retry, so the need to return None
if let Err(e) = result {
match e {
// in case of an error, the dispatcher will retry, so the need to return None
VerificationError::EmptyHash => return Ok(None),
_ => return Err(anyhow::anyhow!("Failed to verify inclusion data: {:?}", e)),
}
Expand Down

0 comments on commit fdccf95

Please sign in to comment.