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 1/3] 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) } From 313457bb67228f07e38f7bb042f596257b2e211b Mon Sep 17 00:00:00 2001 From: Christopher Fuka <97121270+CryptoFewka@users.noreply.github.com> Date: Wed, 10 Jan 2024 17:36:56 -0600 Subject: [PATCH 2/3] Update changelog.md --- changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.md b/changelog.md index 0498a869e1..cca707459b 100644 --- a/changelog.md +++ b/changelog.md @@ -50,6 +50,7 @@ * Remove chain id from the index for observer mapper and rename it to observer set. * Add logger to smoke tests * [1521](https://github.com/zeta-chain/node/pull/1521) - replace go-tss lib version with one that reverts back to thorchain tss-lib +* Update --ledger flag hint ### Chores * [1446](https://github.com/zeta-chain/node/pull/1446) - renamed file `zetaclientd/aux.go` to `zetaclientd/utils.go` to avoid complaints from go package resolver. From da1c80878ac7581731b3694cccfa0bfbcc37ec4b Mon Sep 17 00:00:00 2001 From: Christopher Fuka <97121270+CryptoFewka@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:04:57 -0600 Subject: [PATCH 3/3] Update cmd/zetacored/main.go Co-authored-by: Lucas Bertrand --- 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 6212538405..4b12f153c7 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)", - "Please set a blank path with --hd-path="" to use Cosmos HD path instead.", + "Please set a blank path with --hd-path=\"\" to use Cosmos HD path instead.", }) os.Exit(1) }