From dbabda84f27c995142ff0b22b43c5eb019f149d2 Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Tue, 23 Sep 2025 00:39:26 -0400 Subject: [PATCH] chore: improved logging and comment --- protocol-testing/src/test_runner.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/protocol-testing/src/test_runner.rs b/protocol-testing/src/test_runner.rs index c5c0c83..f32a69e 100644 --- a/protocol-testing/src/test_runner.rs +++ b/protocol-testing/src/test_runner.rs @@ -403,7 +403,7 @@ fn validate_state( } }; - info!("Using adapter contract: {}", adapter_contract_path.display()); + debug!("Using adapter contract: {}", adapter_contract_path.display()); adapter_contract_path_str = Some(adapter_contract_path.to_str().unwrap()); } @@ -461,7 +461,8 @@ fn validate_state( state, component: component.clone(), component_tvl: None, - entrypoints: vec![], // UniswapV4 is not supported for SDK testing at the moment + // Neither UniswapV4 with hooks not certain balancer pools are currently supported for SDK testing + entrypoints: vec![], }; states.insert(component_id.clone(), component_with_state); }