Skip to content

Commit 46ebde7

Browse files
committed
commit merge files
1 parent 17d0e65 commit 46ebde7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/derivation-pipeline/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ async-trait.workspace = true
3939
alloy-primitives = { workspace = true, features = ["getrandom"] }
4040
criterion = { package = "codspeed-criterion-compat", version = "4.0.2", features = ["async", "async_tokio"] }
4141
eyre.workspace = true
42+
reth-tracing.workspace = true
4243
rollup-node-providers = { workspace = true, features = ["test-utils"] }
4344
reqwest.workspace = true
4445
serde_json.workspace = true

crates/derivation-pipeline/benches/pipeline.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ fn benchmark_pipeline_derivation_in_file_blobs(c: &mut Criterion) {
124124
// commit 253 batches.
125125
for index in BATCHES_START_INDEX..=BATCHES_STOP_INDEX {
126126
let batch_info = BatchInfo { index, hash: Default::default() };
127-
pipeline.push_batch(batch_info, 0);
127+
pipeline.push_batch(batch_info.into()).await;
128128
}
129129

130130
tx.send(pipeline).unwrap();
@@ -160,7 +160,7 @@ fn benchmark_pipeline_derivation_s3_blobs(c: &mut Criterion) {
160160
// commit 15 batches.
161161
for index in BATCHES_START_INDEX..=BATCHES_START_INDEX + 15 {
162162
let batch_info = BatchInfo { index, hash: Default::default() };
163-
pipeline.push_batch(batch_info, 0);
163+
pipeline.push_batch(batch_info.into()).await;
164164
}
165165

166166
tx.send(pipeline).unwrap();

0 commit comments

Comments
 (0)