From 511776dbc8f865f23f61bc73902cca18f3300d9c Mon Sep 17 00:00:00 2001 From: Christopher Fuka <97121270+CryptoFewka@users.noreply.github.com> Date: Wed, 10 Jan 2024 17:31:42 -0600 Subject: [PATCH] Update the --ledger --hd-path hint for clarity - replace the second line of the hint with `Please set a blank path with --hd-path="" to use Cosmos HD path instead.` --- cmd/zetacored/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/zetacored/main.go b/cmd/zetacored/main.go index 5da5d57913..6212538405 100644 --- a/cmd/zetacored/main.go +++ b/cmd/zetacored/main.go @@ -34,7 +34,7 @@ func processError(err error) { if strings.Contains(err.Error(), "cannot set custom bip32 path with ledger") { printNotice([]string{ "note: --ledger flag can't be used with Ethereum HD path (used by default)", - "use --hd-path=\"\" in the command to use Cosmos HD path", + "Please set a blank path with --hd-path="" to use Cosmos HD path instead.", }) os.Exit(1) }