Skip to content

Commit

Permalink
spelling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed Aug 23, 2024
1 parent cb9cf12 commit 86f053e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/apps_lib/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7211,7 +7211,7 @@ pub mod args {
"The implicit address of the gas payer. It defaults to the \
address associated to the first key passed to \
--signing-keys. If the specific transaction supports \
--disposable-signing-key, than this one will overwrite this \
--disposable-signing-key, then this one will overwrite this \
argument."
)))
.arg(
Expand Down
10 changes: 5 additions & 5 deletions crates/sdk/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub struct TxCustom<C: NamadaTypes = SdkTypes> {
pub serialized_tx: Option<C::Data>,
/// The address that correspond to the signatures/signing-keys
pub owner: C::Address,
/// Generate an ephimeral signing key to be used only once to sign the
/// Generate an ephemeral signing key to be used only once to sign the
/// wrapper tx
pub disposable_signing_key: bool,
}
Expand Down Expand Up @@ -209,7 +209,7 @@ impl<C: NamadaTypes> TxCustom<C> {
Self { owner, ..self }
}

/// The flag to request an ephimeral signing key to be used only once to
/// The flag to request an ephemeral signing key to be used only once to
/// sign the wrapper tx
pub fn disposable_signing_key(self, disposable_signing_key: bool) -> Self {
Self {
Expand Down Expand Up @@ -355,7 +355,7 @@ pub struct TxShieldedTransfer<C: NamadaTypes = SdkTypes> {
pub data: Vec<TxShieldedTransferData<C>>,
/// Optional additional keys for gas payment
pub gas_spending_keys: Vec<C::SpendingKey>,
/// Generate an ephimeral signing key to be used only once to sign the
/// Generate an ephemeral signing key to be used only once to sign the
/// wrapper tx
pub disposable_signing_key: bool,
/// Path to the TX WASM code file
Expand Down Expand Up @@ -452,7 +452,7 @@ pub struct TxUnshieldingTransfer<C: NamadaTypes = SdkTypes> {
pub data: Vec<TxUnshieldingTransferData<C>>,
/// Optional additional keys for gas payment
pub gas_spending_keys: Vec<C::SpendingKey>,
/// Generate an ephimeral signing key to be used only once to sign the
/// Generate an ephemeral signing key to be used only once to sign the
/// wrapper tx
pub disposable_signing_key: bool,
/// Path to the TX WASM code file
Expand Down Expand Up @@ -498,7 +498,7 @@ pub struct TxIbcTransfer<C: NamadaTypes = SdkTypes> {
pub ibc_memo: Option<String>,
/// Optional additional keys for gas payment
pub gas_spending_keys: Vec<C::SpendingKey>,
/// Generate an ephimeral signing key to be used only once to sign the
/// Generate an ephemeral signing key to be used only once to sign the
/// wrapper tx
pub disposable_signing_key: bool,
/// Path to the TX WASM code file
Expand Down

0 comments on commit 86f053e

Please sign in to comment.