Skip to content

Commit

Permalink
Fix prune test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennifer Parak committed Aug 26, 2024
1 parent f8fba2c commit 2ff861c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/prune/prune/src/segments/user/transaction_lookup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ mod tests {
let blocks = random_block_range(
&mut rng,
1..=10,
BlockParams { parent: Some(B256::ZERO), tx_count: Some(2..3), ..Default::default() },
BlockParams { parent: Some(B256::ZERO), tx_count: Some(0..2), ..Default::default() },
);
db.insert_blocks(blocks.iter(), StorageKind::Database(None)).expect("insert blocks");

Expand Down

0 comments on commit 2ff861c

Please sign in to comment.