Skip to content

Commit

Permalink
Actually schedule migration (#10656)
Browse files Browse the repository at this point in the history
Co-authored-by: zenground0 <ZenGround0@users.noreply.github.com>
  • Loading branch information
ZenGround0 and ZenGround0 authored Apr 11, 2023
1 parent 30dd65b commit 58ccfca
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 58ccfca

Please sign in to comment.