From 36b60179c9a966ee6f9d635064811ef71bd77146 Mon Sep 17 00:00:00 2001 From: tom <69969590+simlecode@users.noreply.github.com> Date: Fri, 21 Oct 2022 10:20:40 +0800 Subject: [PATCH] feat: add a second premigration for nv17 (#5400) --- pkg/fork/fork.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkg/fork/fork.go b/pkg/fork/fork.go index c0d323355e..3c8007ec70 100644 --- a/pkg/fork/fork.go +++ b/pkg/fork/fork.go @@ -304,8 +304,13 @@ func DefaultUpgradeSchedule(cf *ChainFork, upgradeHeight *config.ForkUpgradeConf Migration: cf.UpgradeActorsV9, PreMigrations: []PreMigration{{ PreMigration: cf.PreUpgradeActorsV9, - StartWithin: 180, + StartWithin: 240, DontStartWithin: 60, + StopWithin: 20, + }, { + PreMigration: cf.PreUpgradeActorsV9, + StartWithin: 15, + DontStartWithin: 10, StopWithin: 5, }}, Expensive: true,