chore: prepare v0.50.8 (#20910)

This commit is contained in:
Julien Robert
2024-07-15 11:45:35 +02:00
committed by GitHub
parent 698627016d
commit c64d101080
5 changed files with 11 additions and 9 deletions
-2
View File
@@ -37,7 +37,6 @@ const (
flagNoSort = "nosort"
flagHDPath = "hd-path"
flagPubKeyBase64 = "pubkey-base64"
flagIndiscreet = "indiscreet"
flagMnemonicSrc = "source"
// DefaultKeyPass contains the default key password for genesis transactions
@@ -92,7 +91,6 @@ Example:
f.Uint32(flagAccount, 0, "Account number for HD derivation (less than equal 2147483647)")
f.Uint32(flagIndex, 0, "Address index number for HD derivation (less than equal 2147483647)")
f.String(flags.FlagKeyType, string(hd.Secp256k1Type), "Key signing algorithm to generate keys for")
f.Bool(flagIndiscreet, false, "Print seed phrase directly on current terminal (only valid when --no-backup is false)")
f.String(flagMnemonicSrc, "", "Import mnemonic from a file (only usable when recover or interactive is passed)")
// support old flags name for backwards compatibility
+2
View File
@@ -36,6 +36,8 @@ Ref: https://keepachangelog.com/en/1.0.0/
## [Unreleased]
## [v2.0.0-beta.3] - 2024-07-15
### Features
* [#20771](https://github.com/cosmos/cosmos-sdk/pull/20771) Add `GetNodeHomeDirectory` helper in `client/v2/helpers`.