Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Do Not Merge] Enable add key migration on Migration Mainnet #6970

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/util/ledger/migrations/add_key_migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ import (
// It is used for getting control over system accounts so that they can be tested
// in a copied environment. When we need to do this it is best to create a branch
// where this variable is set to true, and use that temporary branch to run migrations.
const IAmSureIWantToRunThisMigration = false
const IAmSureIWantToRunThisMigration = true

// The list of mainnet node addresses might need updating. Please check it and then set this to true.
const IHaveCheckedTheMainnetNodeAddressesForCorrectness = false
const IHaveCheckedTheMainnetNodeAddressesForCorrectness = true

// AddKeyMigration adds a new key to the core contracts accounts
type AddKeyMigration struct {
Expand Down
Loading