add dev account to config

Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
Cyrill Leutwiler
2025-03-24 09:18:30 +01:00
parent bfb96bf67d
commit 33c5adbc22
7 changed files with 119 additions and 63 deletions
+8
View File
@@ -40,6 +40,14 @@ pub struct Arguments {
/// Configure nodes according to this genesis.json file.
#[arg(long = "genesis-file")]
pub genesis_file: Option<PathBuf>,
/// The signing account private key.
#[arg(
short,
long = "account",
default_value = "0x4f3edf983ac636a65a842ce7c78d9aa706d3b113bce9c46f30d7d21715b23b1d"
)]
pub account: String,
}
impl Default for Arguments {