From 9451de8fafa62c3fd54c15d3a9ee199f47c77a7d Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Thu, 5 Dec 2019 12:08:43 -0800 Subject: [PATCH] Clarify that fee is additional (Fixes #19) --- lib/src/commands.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/src/commands.rs b/lib/src/commands.rs index 958c578..2232ecc 100644 --- a/lib/src/commands.rs +++ b/lib/src/commands.rs @@ -458,12 +458,13 @@ struct SendCommand {} impl Command for SendCommand { fn help(&self) -> String { let mut h = vec![]; - h.push("Send ZEC to a given address"); + h.push("Send ZEC to a given address(es)"); h.push("Usage:"); h.push("send
\"optional_memo\""); h.push("OR"); h.push("send '[{'address':
, 'amount': , 'memo': }, ...]'"); h.push(""); + h.push("NOTE: The fee required to send this transaction (currently ZEC 0.0001) is additionally detected from your balance."); h.push("Example:"); h.push("send ztestsapling1x65nq4dgp0qfywgxcwk9n0fvm4fysmapgr2q00p85ju252h6l7mmxu2jg9cqqhtvzd69jwhgv8d 200000 \"Hello from the command line\""); h.push("");