Merge branch 'main' into support-zombienet

This commit is contained in:
Marios Christou
2025-10-06 08:54:07 +03:00
51 changed files with 4363 additions and 4103 deletions
+3 -2
View File
@@ -16,12 +16,13 @@ use revive_dt_config::*;
use revive_dt_node::{
Node, geth::GethNode, lighthouse_geth::LighthouseGethNode, substrate::SubstrateNode,
zombie::ZombieNode,
Node, node_implementations::geth::GethNode,
node_implementations::lighthouse_geth::LighthouseGethNode,
node_implementations::substrate::SubstrateNode,
};
use revive_dt_node_interaction::EthereumNode;
use tracing::info;
pub mod driver;
/// A trait that describes the interface for the platforms that are supported by the tool.
#[allow(clippy::type_complexity)]
pub trait Platform {