From 644ccd2a056da3d9232921f5937f958fe122bb9f Mon Sep 17 00:00:00 2001 From: Matt Venables Date: Wed, 17 Dec 2025 14:19:31 -0500 Subject: [PATCH] Fix option name in wallet account list error message The CLI currently responds with "--name must be specified", but the `wallet accounts list` command uses the `--wallet` option. --- src/cmd/turnkey/pkg/wallets.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/turnkey/pkg/wallets.go b/src/cmd/turnkey/pkg/wallets.go index 64e1f05..a0687c5 100644 --- a/src/cmd/turnkey/pkg/wallets.go +++ b/src/cmd/turnkey/pkg/wallets.go @@ -502,7 +502,7 @@ var walletAccountsListCmd = &cobra.Command{ Short: "Return accounts for the wallet", PreRun: func(cmd *cobra.Command, args []string) { if walletNameOrID == "" { - OutputError(eris.New("--name must be specified")) + OutputError(eris.New("--wallet must be specified")) } }, Run: func(cmd *cobra.Command, args []string) {