Skip to content

Commit

Permalink
Actually schedule migration (#10656)
Browse files Browse the repository at this point in the history
Co-authored-by: zenground0 <[email protected]>
  • Loading branch information
ZenGround0 and ZenGround0 committed Apr 19, 2023
1 parent bdf645a commit cfc76d9
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion chain/consensus/filcns/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,19 @@ func DefaultUpgradeSchedule() stmgr.UpgradeSchedule {
}, {
Height: build.UpgradeLightningHeight,
Network: network.Version19,
Migration: nil,
Migration: UpgradeActorsV11,
PreMigrations: []stmgr.PreMigration{{
PreMigration: PreUpgradeActorsV11,
StartWithin: 240,
DontStartWithin: 60,
StopWithin: 20,
}, {
PreMigration: PreUpgradeActorsV11,
StartWithin: 15,
DontStartWithin: 10,
StopWithin: 5,
}},
Expensive: true,
}, {
Height: build.UpgradeThunderHeight,
Network: network.Version20,
Expand Down

0 comments on commit cfc76d9

Please sign in to comment.