Skip to content

Commit 2fc54bc

Browse files
committed
chore: address clippy warnings
1 parent 4352e3b commit 2fc54bc

File tree

1 file changed

+2
-3
lines changed
  • batcher/aligned-sdk/src/aggregation_layer

1 file changed

+2
-3
lines changed

batcher/aligned-sdk/src/aggregation_layer/mod.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ pub enum ProofStatus {
3131
/// ### Notes
3232
/// - This functionality is currently in Beta. As a result, we cannot determine with certainty.
3333
/// which specific aggregation a proof belongs to. Instead, we check the events from the specified `from_block`.
34-
/// - The `from_block` must not be older than 18 days,
35-
/// as blobs expire after that period and will no longer be retrievable.
34+
/// - The `from_block` must not be older than 18 days, as blobs expire after that period and will no longer be retrievable.
3635
/// - If not provided, it defaults to fetch logs from [`FROM_BLOCKS_AGO_DEFAULT`]
3736
///
3837
/// ### The verification process includes:
@@ -82,7 +81,7 @@ pub async fn check_proof_verification(
8281

8382
return Ok(ProofStatus::Verified {
8483
merkle_path: proof.merkle_path,
85-
merkle_root: merkle_root,
84+
merkle_root,
8685
});
8786
}
8887

0 commit comments

Comments
 (0)