Skip to content

Commit 434cf97

Browse files
prestwichclaude
andauthored
fix: update for trevm 0.34.2 into_parts() change (#224)
trevm 0.34.2 added a 4th element to `EvmNeedsTx::into_parts()`. Update the destructuring in `BlockDriver::finish` to match. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e76433a commit 434cf97

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.16.1"
6+
version = "0.16.2"
77
edition = "2021"
88
rust-version = "1.87"
99
authors = ["init4"]
@@ -34,22 +34,22 @@ debug = false
3434
incremental = false
3535

3636
[workspace.dependencies]
37-
signet-bundle = { version = "0.16.1", path = "crates/bundle" }
38-
signet-constants = { version = "0.16.1", path = "crates/constants" }
39-
signet-evm = { version = "0.16.1", path = "crates/evm" }
40-
signet-extract = { version = "0.16.1", path = "crates/extract" }
41-
signet-journal = { version = "0.16.1", path = "crates/journal" }
42-
signet-node = { version = "0.16.1", path = "crates/node" }
43-
signet-orders = { version = "0.16.1", path = "crates/orders" }
44-
signet-sim = { version = "0.16.1", path = "crates/sim" }
45-
signet-types = { version = "0.16.1", path = "crates/types" }
46-
signet-tx-cache = { version = "0.16.1", path = "crates/tx-cache" }
47-
signet-zenith = { version = "0.16.1", path = "crates/zenith" }
37+
signet-bundle = { version = "0.16.2", path = "crates/bundle" }
38+
signet-constants = { version = "0.16.2", path = "crates/constants" }
39+
signet-evm = { version = "0.16.2", path = "crates/evm" }
40+
signet-extract = { version = "0.16.2", path = "crates/extract" }
41+
signet-journal = { version = "0.16.2", path = "crates/journal" }
42+
signet-node = { version = "0.16.2", path = "crates/node" }
43+
signet-orders = { version = "0.16.2", path = "crates/orders" }
44+
signet-sim = { version = "0.16.2", path = "crates/sim" }
45+
signet-types = { version = "0.16.2", path = "crates/types" }
46+
signet-tx-cache = { version = "0.16.2", path = "crates/tx-cache" }
47+
signet-zenith = { version = "0.16.2", path = "crates/zenith" }
4848

49-
signet-test-utils = { version = "0.16.1", path = "crates/test-utils" }
49+
signet-test-utils = { version = "0.16.2", path = "crates/test-utils" }
5050

5151
# trevm
52-
trevm = { version = "0.34.1", features = ["full_env_cfg", "asyncdb"] }
52+
trevm = { version = "0.34.2", features = ["full_env_cfg", "asyncdb"] }
5353

5454
# Alloy periphery crates
5555
alloy-core = "1.4"

crates/evm/src/driver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ impl<'a, 'b, C: Extractable> SignetDriver<'a, 'b, C> {
312312
/// Consume the driver, producing the sealed block and receipts.
313313
pub fn finish(self) -> (RecoveredBlock, Vec<ReceiptEnvelope>) {
314314
let header = self.construct_sealed_header();
315-
let (receipts, senders, _) = self.output.into_parts();
315+
let (receipts, senders, _, _) = self.output.into_parts();
316316

317317
let block = SealedBlock::new(header, self.processed).recover_unchecked(senders);
318318

0 commit comments

Comments
 (0)