From 6455a8ff8a840cde7542e8606130c1fb471ae707 Mon Sep 17 00:00:00 2001 From: zenground0 Date: Tue, 11 Apr 2023 13:06:11 -0600 Subject: [PATCH] Actually schedule migration --- chain/consensus/filcns/upgrades.go | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/chain/consensus/filcns/upgrades.go b/chain/consensus/filcns/upgrades.go index 0e68c6b1278..5754c4bea31 100644 --- a/chain/consensus/filcns/upgrades.go +++ b/chain/consensus/filcns/upgrades.go @@ -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,