Skip to content

Commit

Permalink
docs: fixed typos and improved clarity in documentation (partial back…
Browse files Browse the repository at this point in the history
…port #23077) (#23111)

Co-authored-by: Bob <[email protected]>
Co-authored-by: Julien Robert <[email protected]>
  • Loading branch information
3 people authored Dec 28, 2024
1 parent 5bbb916 commit 2a3b0bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/v2/tx/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,15 +181,15 @@ func txParamsFromFlagSet(flags *pflag.FlagSet, keybase keyring2.Keyring, ac addr

fees, _ := flags.GetString(FlagFees)
feePayer, _ := flags.GetString(FlagFeePayer)
feeGrater, _ := flags.GetString(FlagFeeGranter)
feeGranter, _ := flags.GetString(FlagFeeGranter)

unordered, _ := flags.GetBool(FlagUnordered)

gasConfig, err := NewGasConfig(gasValue, gasAdjustment, gasPrices)
if err != nil {
return params, err
}
feeConfig, err := NewFeeConfig(fees, feePayer, feeGrater)
feeConfig, err := NewFeeConfig(fees, feePayer, feeGranter)
if err != nil {
return params, err
}
Expand Down
2 changes: 1 addition & 1 deletion crypto/keyring/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

// Language is a language to create the BIP 39 mnemonic in.
// Currently, only english is supported though.
// Currently, only English is supported though.
// Find a list of all supported languages in the BIP 39 spec (word lists).
type Language int

Expand Down

0 comments on commit 2a3b0bb

Please sign in to comment.