Skip to content

Commit 181aa08

Browse files
committed
chore: fix clippy
1 parent 17b891d commit 181aa08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

remote/src/codec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ impl TryFrom<&reth::primitives::TransactionSigned> for proto::Transaction {
144144
s: transaction.signature().s().to_le_bytes_vec(),
145145
y_parity: transaction.signature().v(),
146146
};
147-
let transaction = match &transaction {
147+
let transaction = match &transaction.clone().into_typed_transaction() {
148148
reth::primitives::Transaction::Legacy(alloy_consensus::TxLegacy {
149149
chain_id,
150150
nonce,

0 commit comments

Comments
 (0)