Skip to content

Commit 1f157f0

Browse files
authored
Remove redundant comment in BlockBody arbitrary implementation (#2702)
1 parent 5fe237d commit 1f157f0

File tree

1 file changed

+0
-1
lines changed
  • crates/consensus/src/block

1 file changed

+0
-1
lines changed

crates/consensus/src/block/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,6 @@ where
343343
{
344344
fn arbitrary(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> {
345345
// first generate up to 100 txs
346-
// first generate a reasonable amount of txs
347346
let transactions = (0..u.int_in_range(0..=100)?)
348347
.map(|_| T::arbitrary(u))
349348
.collect::<arbitrary::Result<Vec<_>>>()?;

0 commit comments

Comments
 (0)