From 8b017127baa2c0765d624dee47cf1876c9dc3566 Mon Sep 17 00:00:00 2001 From: Veronic85 Date: Fri, 24 Apr 2026 13:50:46 +0800 Subject: [PATCH] fix(cli): use node types in execution stage dump --- crates/cli/commands/src/stage/dump/execution.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/cli/commands/src/stage/dump/execution.rs b/crates/cli/commands/src/stage/dump/execution.rs index a6ecef2725d..590d26117e1 100644 --- a/crates/cli/commands/src/stage/dump/execution.rs +++ b/crates/cli/commands/src/stage/dump/execution.rs @@ -6,7 +6,7 @@ use reth_db_api::{ }; use reth_db_common::DbTool; use reth_evm::ConfigureEvm; -use reth_node_api::HeaderTy; +use reth_node_api::{HeaderTy, TxTy}; use reth_node_core::dirs::{ChainPath, DataDirPath}; use reth_provider::{ providers::{ProviderNodeTypes, RocksDBProvider, StaticFileProvider}, @@ -88,7 +88,7 @@ fn import_tables_with_range( ) })??; output_db.update(|tx| { - tx.import_table_with_range::( + tx.import_table_with_range::>, _>( &db_tool.provider_factory.db_ref().tx()?, Some(from), to, @@ -110,7 +110,7 @@ fn import_tables_with_range( })??; output_db.update(|tx| { - tx.import_table_with_range::( + tx.import_table_with_range::>, _>( &db_tool.provider_factory.db_ref().tx()?, Some(from_tx), to_tx,