File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
package sdkutil
2
2
3
- import (
4
- sdk "github.com/cosmos/cosmos-sdk/types"
5
- )
3
+ // import (
4
+ // sdk "github.com/cosmos/cosmos-sdk/types"
5
+ // )
6
6
7
7
// init atm SDK configs is instantiated with const values, so it sealed within init below
8
8
// it helps for all tests as well as packages relying on this api to always have the same config
9
9
// as soon as sdkutil is imported
10
- func init () {
11
- config := sdk .GetConfig ()
12
- config .SetBech32PrefixForAccount (Bech32PrefixAccAddr , Bech32PrefixAccPub )
13
- config .SetBech32PrefixForValidator (Bech32PrefixValAddr , Bech32PrefixValPub )
14
- config .SetBech32PrefixForConsensusNode (Bech32PrefixConsAddr , Bech32PrefixConsPub )
15
- config .Seal ()
16
- }
10
+ // func init() {
11
+ // config := sdk.GetConfig()
12
+ // config.SetBech32PrefixForAccount(Bech32PrefixAccAddr, Bech32PrefixAccPub)
13
+ // config.SetBech32PrefixForValidator(Bech32PrefixValAddr, Bech32PrefixValPub)
14
+ // config.SetBech32PrefixForConsensusNode(Bech32PrefixConsAddr, Bech32PrefixConsPub)
15
+ // config.Seal()
16
+ // }
You can’t perform that action at this time.
0 commit comments