From 821c63494e2805db84e7233819d68e9b92280037 Mon Sep 17 00:00:00 2001 From: sprites0 <199826320+sprites0@users.noreply.github.com> Date: Tue, 4 Nov 2025 17:23:31 +0000 Subject: [PATCH] fix: Fix testnet transaction types --- src/node/types/reth_compat.rs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/node/types/reth_compat.rs b/src/node/types/reth_compat.rs index 27cf6b114..a8225c66a 100644 --- a/src/node/types/reth_compat.rs +++ b/src/node/types/reth_compat.rs @@ -1,4 +1,5 @@ //! Copy of reth codebase to preserve serialization compatibility +use crate::chainspec::TESTNET_CHAIN_ID; use alloy_consensus::{Header, Signed, TxEip1559, TxEip2930, TxEip4844, TxEip7702, TxLegacy}; use alloy_primitives::{Address, BlockHash, Signature, TxKind, U256}; use reth_primitives::TransactionSigned as RethTxSigned; @@ -113,12 +114,15 @@ impl SealedBlock { &self, read_precompile_calls: ReadPrecompileCalls, highest_precompile_address: Option
, - system_txs: Vec