Implement the Node trait for kitchensink (#16)

* feat: implement Node trait for Kitchensink node

* removed self from eth_to_substrate_address method
This commit is contained in:
activecoder10
2025-06-05 09:12:54 +03:00
committed by GitHub
parent 1bc20d088f
commit 3b26e1e1d6
9 changed files with 2549 additions and 139 deletions
+12
View File
@@ -92,6 +92,18 @@ pub struct Arguments {
/// Extract problems back to the test corpus.
#[arg(short, long = "extract-problems")]
pub extract_problems: bool,
/// The path to the `kitchensink` executable.
///
/// By default it uses `substrate-node` binary found in `$PATH`.
#[arg(short, long = "kitchensink", default_value = "substrate-node")]
pub kitchensink: PathBuf,
/// The path to the `eth_proxy` executable.
///
/// By default it uses `eth-rpc` binary found in `$PATH`.
#[arg(short = 'p', long = "eth_proxy", default_value = "eth-rpc")]
pub eth_proxy: PathBuf,
}
impl Arguments {