From c1fcbbdaaeaa467a1e176f03598abe4a1007742f Mon Sep 17 00:00:00 2001 From: hansieodendaal Date: Wed, 28 Jan 2026 09:54:50 +0200 Subject: [PATCH] Fix compile error --- testing-framework/tools/cfgsync_tf/src/bin/cfgsync-client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing-framework/tools/cfgsync_tf/src/bin/cfgsync-client.rs b/testing-framework/tools/cfgsync_tf/src/bin/cfgsync-client.rs index f6bb93c..8469338 100644 --- a/testing-framework/tools/cfgsync_tf/src/bin/cfgsync-client.rs +++ b/testing-framework/tools/cfgsync_tf/src/bin/cfgsync-client.rs @@ -4,7 +4,7 @@ use cfgsync_tf::{ client::{FetchedConfig, get_config}, server::ClientIp, }; -use nomos_node::config::RunConfig as NodeConfig; +use nomos_node::UserConfig; use serde::{Serialize, de::DeserializeOwned}; use testing_framework_config::constants::cfgsync_port as default_cfgsync_port; use testing_framework_core::nodes::common::config::injection::{ @@ -70,7 +70,7 @@ async fn main() { let node_config_endpoint = format!("{server_addr}/node"); let config_result = - pull_to_file::(payload, &node_config_endpoint, &config_file_path).await; + pull_to_file::(payload, &node_config_endpoint, &config_file_path).await; // Handle error if the config request fails if let Err(err) = config_result {