feat: dump command

This commit is contained in:
Oleksandr Pravdyvyi 2025-08-08 10:07:10 +03:00
parent 17b6851d00
commit 99640bd70c
No known key found for this signature in database
GPG Key ID: 9F8955C63C443871

View File

@ -149,6 +149,7 @@ pub enum Command {
#[arg(long)]
amount: u64,
},
DumpAccountsOnDisc,
}
///To execute commands, env var NSSA_WALLET_HOME_DIR must be set into directory with config
@ -177,6 +178,9 @@ pub async fn execute_subcommand(command: Command) -> Result<()> {
info!("Results of tx send is {res:#?}");
}
Command::DumpAccountsOnDisc => {
info!("Accounts stored at path");
}
}
Ok(())