Skip to content

Commit d1e2170

Browse files
committed
cargo clippy
1 parent 95de331 commit d1e2170

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/batcher/src/types/batch_queue.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ pub(crate) fn calculate_batch_size(batch_queue: &BatchQueue) -> Result<usize, Ba
123123
let folded_result = batch_queue.iter().try_fold(0, |acc, (entry, _)| {
124124
let verification_data_size = entry.nonced_verification_data.cbor_size_upper_bound();
125125
let current_batch_size = acc + verification_data_size;
126-
ControlFlow::Continue(current_batch_size)
126+
ControlFlow::<usize, usize>::Continue(current_batch_size)
127127
});
128128

129129
if let ControlFlow::Continue(batch_size) = folded_result {

0 commit comments

Comments
 (0)