You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: crates/edr_evm/src/blockchain.rs
+3-1
Original file line number
Diff line number
Diff line change
@@ -56,12 +56,14 @@ pub enum BlockchainError {
56
56
expected:B256,
57
57
},
58
58
/// Missing hardfork activation history
59
-
#[error("No known hardfork for execution on historical block {block_number} (relative to fork block number {fork_block_number}). The node was not configured with a hardfork activation history.")]
59
+
#[error("No known hardfork for execution on historical block {block_number} (relative to fork block number {fork_block_number}) in chain with id {chain_id}. The node was not configured with a hardfork activation history.")]
60
60
MissingHardforkActivations{
61
61
/// Block number
62
62
block_number:u64,
63
63
/// Fork block number
64
64
fork_block_number:u64,
65
+
/// Chain id
66
+
chain_id:u64,
65
67
},
66
68
/// Missing withdrawals for post-Shanghai blockchain
67
69
#[error("Missing withdrawals for post-Shanghai blockchain")]
0 commit comments