diff --git a/kinode/packages/app_store/app_store/src/types.rs b/kinode/packages/app_store/app_store/src/types.rs index c76d6191..18ca512b 100644 --- a/kinode/packages/app_store/app_store/src/types.rs +++ b/kinode/packages/app_store/app_store/src/types.rs @@ -1,3 +1,4 @@ +use crate::LocalRequest; use alloy_sol_types::{sol, SolEvent}; use kinode_process_lib::eth::Log; use kinode_process_lib::kernel_types as kt; diff --git a/kinode/src/eth/provider.rs b/kinode/src/eth/provider.rs index fc00a249..f05ea989 100644 --- a/kinode/src/eth/provider.rs +++ b/kinode/src/eth/provider.rs @@ -240,7 +240,6 @@ async fn handle_local_request( .prepare(method, params) .await .map_err(|e| EthError::TransportError(e.to_string()))?; - println!("got a normal request! "); EthResponse::Response { value: response } } };