Skip to content

Commit

Permalink
Fix powershell completion code. (#1730)
Browse files Browse the repository at this point in the history
  • Loading branch information
fnando authored Nov 16, 2024
1 parent 355905d commit 796d476
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions FULL_HELP_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -1749,9 +1749,9 @@ Set option for an account such as flags, inflation destination, signers, home do
* `--signer <SIGNER>` — Add, update, or remove a signer from an account
* `--signer-weight <SIGNER_WEIGHT>` — Signer weight is a number from 0-255 (inclusive). The signer is deleted if the weight is 0
* `--set-required` — When enabled, an issuer must approve an account before that account can hold its asset. https://developers.stellar.org/docs/tokens/control-asset-access#authorization-required-0x1
* `--set-revocable` — When enabled, an issuer can revoke an existing trustlines authorization, thereby freezing the asset held by an account. https://developers.stellar.org/docs/tokens/control-asset-access#authorization-revocable-0x2
* `--set-revocable` — When enabled, an issuer can revoke an existing trustline's authorization, thereby freezing the asset held by an account. https://developers.stellar.org/docs/tokens/control-asset-access#authorization-revocable-0x2
* `--set-clawback-enabled` — Enables the issuing account to take back (burning) all of the asset. https://developers.stellar.org/docs/tokens/control-asset-access#clawback-enabled-0x8
* `--set-immutable` — With this setting, none of the other authorization flags (`AUTH_REQUIRED_FLAG`, `AUTH_REVOCABLE_FLAG`) can be set, and the issuing account cant be merged. https://developers.stellar.org/docs/tokens/control-asset-access#authorization-immutable-0x4
* `--set-immutable` — With this setting, none of the other authorization flags (`AUTH_REQUIRED_FLAG`, `AUTH_REVOCABLE_FLAG`) can be set, and the issuing account can't be merged. https://developers.stellar.org/docs/tokens/control-asset-access#authorization-immutable-0x4
* `--clear-required`
* `--clear-revocable`
* `--clear-immutable`
Expand Down
4 changes: 2 additions & 2 deletions cmd/soroban-cli/src/commands/tx/new/set_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ pub struct Cmd {
/// https://developers.stellar.org/docs/tokens/control-asset-access#authorization-required-0x1
pub set_required: bool,
#[arg(long, conflicts_with = "clear_revocable")]
/// When enabled, an issuer can revoke an existing trustlines authorization, thereby freezing the asset held by an account.
/// When enabled, an issuer can revoke an existing trustline's authorization, thereby freezing the asset held by an account.
/// https://developers.stellar.org/docs/tokens/control-asset-access#authorization-revocable-0x2
pub set_revocable: bool,
#[arg(long, conflicts_with = "clear_clawback_enabled")]
/// Enables the issuing account to take back (burning) all of the asset.
/// https://developers.stellar.org/docs/tokens/control-asset-access#clawback-enabled-0x8
pub set_clawback_enabled: bool,
#[arg(long, conflicts_with = "clear_immutable")]
/// With this setting, none of the other authorization flags (`AUTH_REQUIRED_FLAG`, `AUTH_REVOCABLE_FLAG`) can be set, and the issuing account cant be merged.
/// With this setting, none of the other authorization flags (`AUTH_REQUIRED_FLAG`, `AUTH_REVOCABLE_FLAG`) can be set, and the issuing account can't be merged.
/// https://developers.stellar.org/docs/tokens/control-asset-access#authorization-immutable-0x4
pub set_immutable: bool,
#[arg(long)]
Expand Down

0 comments on commit 796d476

Please sign in to comment.