From 9f021187808c3506902b313f2aebb14032ff63f6 Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Thu, 5 Sep 2024 10:22:03 -0700 Subject: [PATCH] docs: add more help info to migrate cmd --- crates/bin/pcli/src/command/migrate.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/crates/bin/pcli/src/command/migrate.rs b/crates/bin/pcli/src/command/migrate.rs index c65c0b63a9..df81b13bed 100644 --- a/crates/bin/pcli/src/command/migrate.rs +++ b/crates/bin/pcli/src/command/migrate.rs @@ -10,9 +10,12 @@ use termion::input::TermRead; #[derive(Debug, clap::Parser)] pub enum MigrateCmd { - /// Migrate your entire balance. + /// Migrate your entire balance to another wallet. /// - /// This will require a full viewing key over the command line as well. + /// All assets from all accounts in the source wallet will be sent to the destination wallet. + /// A FullViewingKey must be provided for the destination wallet. + /// All funds will be deposited in the account 0 of the destination wallet, + /// minus any gas prices for the migration transaction. #[clap(name = "balance")] Balance, }