From 20fce881679d86fbb78e9bc437a72f59626eb5ea Mon Sep 17 00:00:00 2001 From: sprites0 <199826320+sprites0@users.noreply.github.com> Date: Mon, 10 Mar 2025 23:14:19 +0000 Subject: [PATCH] fix: Use correct types for system tx receipts --- bin/reth/src/serialized.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/reth/src/serialized.rs b/bin/reth/src/serialized.rs index 25101e63e..d351a377c 100644 --- a/bin/reth/src/serialized.rs +++ b/bin/reth/src/serialized.rs @@ -1,6 +1,5 @@ use alloy_consensus::{TxEip1559, TxEip2930, TxLegacy}; -use alloy_rpc_types::Log; -use reth_primitives::{SealedBlock, Transaction}; +use reth_primitives::{Log, SealedBlock, Transaction}; use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, Serialize, Deserialize)]