Browse Source

Clarify that fee is additional (Fixes #19)

master
Aditya Kulkarni 5 years ago
parent
commit
9451de8faf
  1. 3
      lib/src/commands.rs

3
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 <address> <amount in zatoshis> \"optional_memo\"");
h.push("OR");
h.push("send '[{'address': <address>, 'amount': <amount in zatoshis>, 'memo': <optional 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("");

Loading…
Cancel
Save