-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(x/ecocredit): move regen prefix configuration into module root (#…
…1253) * chore(x/ecocredit): move regen prefix configuration into root module * Use regen prefixed addresses in feature files * Use regen prefix in migration tests * Use regen prefix in simulation tests * chore: remove unused sdk imports Co-authored-by: Ryan Christoffersen <[email protected]>
- Loading branch information
1 parent
8597f8c
commit 75ec247
Showing
29 changed files
with
109 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package ecocredit | ||
|
||
import ( | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
) | ||
|
||
func init() { | ||
cfg := sdk.GetConfig() | ||
cfg.SetBech32PrefixForAccount("regen", "regenpub") | ||
} |
Oops, something went wrong.