From f593420b937421bfe44a6cc7341230f588e4c1a0 Mon Sep 17 00:00:00 2001 From: Tim Hawbaker Date: Thu, 2 Nov 2023 16:11:17 -0700 Subject: [PATCH] fix typo --- src/cmd/turnkey/pkg/wallets.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmd/turnkey/pkg/wallets.go b/src/cmd/turnkey/pkg/wallets.go index e4c4e7c..c2e4dbc 100644 --- a/src/cmd/turnkey/pkg/wallets.go +++ b/src/cmd/turnkey/pkg/wallets.go @@ -25,9 +25,9 @@ func init() { walletAccountCreateCmd.Flags().StringVar(&walletName, "name", "", "name of wallet used for account creation") walletAccountCreateCmd.Flags().StringVar(&walletAccountAddressFormat, "address-format", "", "address format for account. For a list of formats, use 'turnkey address-formats list'.") - walletAccountCreateCmd.Flags().StringVar(&walletAccountCurve, "curve", "", "curve for account. For a list of curves, use 'turnkey curves list'. If unset, will predicate based on address format.") + walletAccountCreateCmd.Flags().StringVar(&walletAccountCurve, "curve", "", "curve for account. For a list of curves, use 'turnkey curves list'. If unset, will predict based on address format.") walletAccountCreateCmd.Flags().StringVar(&walletAccountPathFormat, "path-format", string(models.PathFormatBip32), "the derivation path format for account.") - walletAccountCreateCmd.Flags().StringVar(&walletAccountPath, "path", "", "the derivation path for account. If unset, will predicate next path.") + walletAccountCreateCmd.Flags().StringVar(&walletAccountPath, "path", "", "the derivation path for account. If unset, will predict next path.") walletAccountsCmd.AddCommand(walletAccountsListCmd) walletAccountsCmd.AddCommand(walletAccountCreateCmd)