mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-05-06 07:27:56 +00:00
fixes
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
// Re-export the cached compiler from core to avoid code duplication
|
||||
pub use revive_dt_core::CachedCompiler;
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user