Some checks are pending
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
60 lines
1.6 KiB
Go
60 lines
1.6 KiB
Go
package v2
|
|
|
|
import (
|
|
"encoding/binary"
|
|
|
|
sdk "git.cw.tr/mukan-network/mukan-sdk/types"
|
|
authtypes "git.cw.tr/mukan-network/mukan-sdk/x/auth/types"
|
|
)
|
|
|
|
// MigrateGenState accepts exported v0.46 x/auth genesis state and migrates it to
|
|
// v0.47 x/auth genesis state. The migration includes:
|
|
// - If the group module is enabled, replace group policy accounts from module accounts to base accounts.
|
|
func MigrateGenState(oldState *authtypes.GenesisState) *authtypes.GenesisState {
|
|
newState := *oldState
|
|
|
|
accounts, err := authtypes.UnpackAccounts(newState.Accounts)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
groupPolicyAccountCounter := uint64(0)
|
|
for i, acc := range accounts {
|
|
modAcc, ok := acc.(sdk.ModuleAccountI)
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
if modAcc.GetName() != modAcc.GetAddress().String() {
|
|
continue
|
|
}
|
|
|
|
// Replace group policy accounts from module accounts to base accounts.
|
|
// These accounts were wrongly created and the address was equal to the module name.
|
|
derivationKey := make([]byte, 8)
|
|
binary.BigEndian.PutUint64(derivationKey, groupPolicyAccountCounter)
|
|
|
|
cred, err := authtypes.NewModuleCredential(ModuleName, []byte{GroupPolicyTablePrefix}, derivationKey)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
baseAccount, err := authtypes.NewBaseAccountWithPubKey(cred)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
if err := baseAccount.SetAccountNumber(modAcc.GetAccountNumber()); err != nil {
|
|
panic(err)
|
|
}
|
|
accounts[i] = baseAccount
|
|
groupPolicyAccountCounter++
|
|
}
|
|
|
|
packedAccounts, err := authtypes.PackAccounts(accounts)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
newState.Accounts = packedAccounts
|
|
|
|
return &newState
|
|
}
|