diff --git a/wallet/src/lib.rs b/wallet/src/lib.rs index 81cf14e..da58aee 100644 --- a/wallet/src/lib.rs +++ b/wallet/src/lib.rs @@ -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(())