From 99640bd70c1834ff6a0b2ff47486bf901d219414 Mon Sep 17 00:00:00 2001 From: Oleksandr Pravdyvyi Date: Fri, 8 Aug 2025 10:07:10 +0300 Subject: [PATCH] feat: dump command --- wallet/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) 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(())