Skip to content

Commit

Permalink
Revert "add: specify controller in desc"
Browse files Browse the repository at this point in the history
This reverts commit 0ad29cb.
  • Loading branch information
pLabarta committed Jun 20, 2023
1 parent 0ad29cb commit 24718ff
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions scripts/cc-cli/src/commands/unbond.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,11 @@ import { getStatus, requireStatus } from "../utils/status";

export function makeUnbondCommand() {
const cmd = new Command("unbond");
cmd.description(
"Schedule a portion of the stash to be unlocked by the controller"
);
cmd.option(
"-s, --seed [mnemonic]",
"Specify controller mnemonic phrase to use"
);
cmd.description("Schedule a portion of the stash to be unlocked");
cmd.option("-s, --seed [mnemonic]", "Specify mnemonic phrase to use");
cmd.option(
"-f, --file [file-name]",
"Specify controller file with mnemonic phrase to use"
"Specify file with mnemonic phrase to use"
);
cmd.option("-a, --amount [amount]", "Amount to send");
cmd.action(unbondAction);
Expand Down

0 comments on commit 24718ff

Please sign in to comment.