Provide a common node implementation for substrate chains

This commit is contained in:
Omar Abdulla
2025-09-17 20:23:31 +03:00
parent ac0f4e0cf2
commit f0f59ad024
4 changed files with 107 additions and 126 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ use revive_dt_format::traits::ResolverApi;
use revive_dt_node::{
Node,
geth::{self, GethNode},
kitchensink::KitchensinkNode,
substrate::SubstrateNode,
};
use revive_dt_node_interaction::EthereumNode;
use tracing::info;
@@ -54,7 +54,7 @@ impl Platform for Geth {
pub struct Kitchensink;
impl Platform for Kitchensink {
type Blockchain = KitchensinkNode;
type Blockchain = SubstrateNode;
type Compiler = revive_resolc::Resolc;
fn config_id() -> &'static TestingPlatform {