Extended execute_input method (#21)

* Extended execute_input method

* Improve tracing part
This commit is contained in:
activecoder10
2025-06-10 11:23:37 +03:00
committed by GitHub
parent c8eb8cf7b0
commit 547563e718
2 changed files with 49 additions and 9 deletions
+2 -2
View File
@@ -5,7 +5,7 @@
use revive_dt_compiler::{SolidityCompiler, revive_resolc, solc};
use revive_dt_config::TestingPlatform;
use revive_dt_node::geth;
use revive_dt_node::{geth, kitchensink::KitchensinkNode};
use revive_dt_node_interaction::EthereumNode;
pub mod driver;
@@ -37,7 +37,7 @@ impl Platform for Geth {
pub struct Kitchensink;
impl Platform for Kitchensink {
type Blockchain = geth::Instance;
type Blockchain = KitchensinkNode;
type Compiler = revive_resolc::Resolc;
fn config_id() -> TestingPlatform {