diff --git a/crates/consensus/src/transaction/typed.rs b/crates/consensus/src/transaction/typed.rs index 8fe54f88..ffdf7b1f 100644 --- a/crates/consensus/src/transaction/typed.rs +++ b/crates/consensus/src/transaction/typed.rs @@ -335,7 +335,7 @@ mod serde_from { TaggedTypedTransaction::Eip2930(signed) => Self::Eip2930(signed), TaggedTypedTransaction::Eip1559(signed) => Self::Eip1559(signed), TaggedTypedTransaction::Eip7702(signed) => Self::Eip7702(signed), - TaggedTypedTransaction::Deposit(tx) => Self::Deposit(tx) + TaggedTypedTransaction::Deposit(tx) => Self::Deposit(tx), } } }