diff --git a/crates/primitives/src/types/tx.rs b/crates/primitives/src/types/tx.rs index 72b39609..7973a26a 100644 --- a/crates/primitives/src/types/tx.rs +++ b/crates/primitives/src/types/tx.rs @@ -171,7 +171,7 @@ impl TxTrace for TransactionTrace { fn chain_id(&self) -> Option { let chain_id: ChainId = self.chain_id.to(); - if self.ty == 0 && chain_id < 35 { + if self.ty == 0 && self.v() < 35 { None } else { Some(chain_id)