Skip to content

Commit

Permalink
Merge pull request #10 from iotaledger/fix/tag-default-value
Browse files Browse the repository at this point in the history
fix(cli): Document default value for transaction tag
  • Loading branch information
obany authored Aug 17, 2020
2 parents 743e33b + 0df5270 commit 80cd5b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Options:
--mwm <number> Minimum weight magnitude to use for attaching the transaction to the tangle (default: "14")
--seed <string> 81 Tryte seed used to generate addresses
--address-index <number> Index number used to generate addresses (default: "0")
--transaction-tag <string> Tag to apply to the Tangle transaction
--transaction-tag <string> Tag to apply to the Tangle transaction (default: "GITHUB9RELEASE")
--comment <string> An optional comment to include in the Tangle transaction payload
--explorer-url <string> Url of the explorer to use for exploration link (default: "https://utils.iota.org/transaction/:hash")
--help Display help
Expand Down
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ program
"14")
.option("--seed <string>", chalk.yellowBright("81 Tryte seed used to generate addresses"))
.option("--address-index <number>", chalk.yellowBright("Index number used to generate addresses"), "0")
.option("--transaction-tag <string>", chalk.yellowBright("Tag to apply to the Tangle transaction"))
.option("--transaction-tag <string>", chalk.yellowBright("Tag to apply to the Tangle transaction"), "GITHUB9RELEASE")
.option("--comment <string>",
chalk.yellowBright("An optional comment to include in the Tangle transaction payload"))
.option("--explorer-url <string>", chalk.yellowBright("Url of the explorer to use for exploration link"),
Expand Down

0 comments on commit 80cd5b3

Please sign in to comment.