Revert "Mege PR #5092: changed bench32prefixes" (#5283)

This reverts commit 5a310fabbd.
This commit is contained in:
Alexander Bezobchuk 2019-11-06 10:18:48 -07:00 committed by GitHub
parent 5a310fabbd
commit ede9aaed3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 13 deletions

View File

@ -130,7 +130,6 @@ that allows for arbitrary vesting periods.
### Improvements ### Improvements
* (keys) [\#5091](https://github.com/cosmos/cosmos-sdk/issues/5091) Changed prefixes using `SetBech32PrefixForAccount(), SetBech32PrefixForValidator(), SetBech32PrefixForConsensusNode()` methods are respected in `keys parse`.
* (server) [\#4215](https://github.com/cosmos/cosmos-sdk/issues/4215) The `--pruning` flag * (server) [\#4215](https://github.com/cosmos/cosmos-sdk/issues/4215) The `--pruning` flag
has been moved to the configuration file, to allow easier node configuration. has been moved to the configuration file, to allow easier node configuration.
* (cli) [\#5116](https://github.com/cosmos/cosmos-sdk/issues/5116) The `CLIContext` now supports multiple verifiers * (cli) [\#5116](https://github.com/cosmos/cosmos-sdk/issues/5116) The `CLIContext` now supports multiple verifiers
@ -150,6 +149,7 @@ chain ID and node URI or client set. To use a `CLIContext` with a verifier for a
context.CreateVerifier(sideCtx, context.DefaultVerifierCacheSize), context.CreateVerifier(sideCtx, context.DefaultVerifierCacheSize),
) )
``` ```
* (modules) [\#5017](https://github.com/cosmos/cosmos-sdk/pull/5017) The `x/auth` package now supports * (modules) [\#5017](https://github.com/cosmos/cosmos-sdk/pull/5017) The `x/auth` package now supports
generalized genesis accounts through the `GenesisAccount` interface. generalized genesis accounts through the `GenesisAccount` interface.
* (modules) [\#4762](https://github.com/cosmos/cosmos-sdk/issues/4762) Deprecate remove and add permissions in ModuleAccount. * (modules) [\#4762](https://github.com/cosmos/cosmos-sdk/issues/4762) Deprecate remove and add permissions in ModuleAccount.

View File

@ -17,17 +17,14 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types" sdk "github.com/cosmos/cosmos-sdk/types"
) )
func bech32Prefixes() []string { var config = sdk.GetConfig()
config := sdk.GetConfig() var bech32Prefixes = []string{
config.GetBech32AccountAddrPrefix(),
return []string{ config.GetBech32AccountPubPrefix(),
config.GetBech32AccountAddrPrefix(), config.GetBech32ValidatorAddrPrefix(),
config.GetBech32AccountPubPrefix(), config.GetBech32ValidatorPubPrefix(),
config.GetBech32ValidatorAddrPrefix(), config.GetBech32ConsensusAddrPrefix(),
config.GetBech32ValidatorPubPrefix(), config.GetBech32ConsensusPubPrefix(),
config.GetBech32ConsensusAddrPrefix(),
config.GetBech32ConsensusPubPrefix(),
}
} }
type hexOutput struct { type hexOutput struct {
@ -48,7 +45,6 @@ type bech32Output struct {
} }
func newBech32Output(bs []byte) bech32Output { func newBech32Output(bs []byte) bech32Output {
bech32Prefixes := bech32Prefixes()
out := bech32Output{Formats: make([]string, len(bech32Prefixes))} out := bech32Output{Formats: make([]string, len(bech32Prefixes))}
for i, prefix := range bech32Prefixes { for i, prefix := range bech32Prefixes {
bech32Addr, err := bech32.ConvertAndEncode(prefix, bs) bech32Addr, err := bech32.ConvertAndEncode(prefix, bs)