fix: typos (#25000)

This commit is contained in:
crStiv
2025-07-25 14:14:05 -04:00
committed by GitHub
parent 64bd1a134e
commit dca3b88cd0
10 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -569,8 +569,8 @@ func PrepareConfigForTxCreateValidator(flagSet *flag.FlagSet, moniker, nodeID, c
// BuildCreateValidatorMsg makes a new MsgCreateValidator.
func BuildCreateValidatorMsg(clientCtx client.Context, config TxCreateValidatorConfig, txBldr tx.Factory, generateOnly bool, valCodec address.Codec) (tx.Factory, sdk.Msg, error) {
amounstStr := config.Amount
amount, err := sdk.ParseCoinNormalized(amounstStr)
amountStr := config.Amount
amount, err := sdk.ParseCoinNormalized(amountStr)
if err != nil {
return txBldr, nil, err
}