Move all migration scripts to v043 (#8814)

* Move all migration scripts to v043

* Fix permaling

* Fix test

* Fix test again

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Amaury
2021-03-08 22:36:06 +00:00
committed by GitHub
co-authored by mergify[bot]
parent c2d5b24f58
commit 6ac8898fec
17 changed files with 44 additions and 44 deletions
@@ -71,7 +71,7 @@ Since migration functions manipulate legacy code, they should live inside the `l
```go
// Migrate1to2 migrates from version 1 to 2.
func (m Migrator) Migrate1to2(ctx sdk.Context) error {
return v042bank.MigrateStore(ctx, m.keeper.storeKey) // v042bank is package `x/bank/legacy/v042`.
return v043bank.MigrateStore(ctx, m.keeper.storeKey) // v043bank is package `x/bank/legacy/v043`.
}
```