This commit is contained in:
pgherveou
2025-10-08 09:52:13 +02:00
parent 8ae994f9de
commit b40c17c0af
4 changed files with 70 additions and 9 deletions
@@ -1,2 +0,0 @@
// Re-export the cached compiler from core to avoid code duplication
pub use revive_dt_core::CachedCompiler;
+2 -2
View File
@@ -312,9 +312,9 @@ async fn execute_test_file(
info!("Using existing node");
let existing_node: Box<dyn revive_dt_node_interaction::EthereumNode> = match args.platform {
TestingPlatform::Geth =>
Box::new(revive_dt_node::node_implementations::geth::GethNode::new_existing(&args.private_key)?),
Box::new(revive_dt_node::node_implementations::geth::GethNode::new_existing(&args.private_key).await?),
TestingPlatform::Kitchensink | TestingPlatform::Zombienet => Box::new(
revive_dt_node::node_implementations::substrate::SubstrateNode::new_existing(&args.private_key)?,
revive_dt_node::node_implementations::substrate::SubstrateNode::new_existing(&args.private_key).await?,
),
};
Box::leak(existing_node)