From 9a7d32fe524a78ee1af644bc1e5b5bb1824ee570 Mon Sep 17 00:00:00 2001 From: Mark Mackey Date: Fri, 10 Mar 2023 13:30:45 -0600 Subject: [PATCH] Fix Integration Tests with Latest Nethermind --- testing/execution_engine_integration/src/nethermind.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/execution_engine_integration/src/nethermind.rs b/testing/execution_engine_integration/src/nethermind.rs index 42f2c26b2b5..bd117bb0b23 100644 --- a/testing/execution_engine_integration/src/nethermind.rs +++ b/testing/execution_engine_integration/src/nethermind.rs @@ -67,7 +67,7 @@ impl NethermindEngine { .join("Nethermind.Runner") .join("bin") .join("Release") - .join("net6.0") + .join("net7.0") .join("Nethermind.Runner") } } @@ -95,7 +95,7 @@ impl GenericExecutionEngine for NethermindEngine { .arg("--datadir") .arg(datadir.path().to_str().unwrap()) .arg("--config") - .arg("kiln") + .arg("hive") .arg("--Init.ChainSpecPath") .arg(genesis_json_path.to_str().unwrap()) .arg("--Merge.TerminalTotalDifficulty")