Skip to content

Commit fa0dfdf

Browse files
committed
Modify upgrade schedule and params
1 parent 19ae05f commit fa0dfdf

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

build/params_butterfly.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const UpgradeSkyrHeight = -19
5353
const UpgradeSharkHeight = -20
5454
const UpgradeHyggeHeight = -21
5555

56-
const UpgradeLightningHeight = 360
56+
const UpgradeLightningHeight = 500
5757

5858
const UpgradeThunderHeight = UpgradeLightningHeight + 360
5959

build/params_calibnet.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ const UpgradeSharkHeight = 16800 // 6 days after genesis
7373
// 2023-02-21T16:30:00Z
7474
const UpgradeHyggeHeight = 322354
7575

76-
// 2023-04-20T16:30:00Z
77-
const UpgradeLightningHeight = 489394
76+
// 2023-04-20T14:00:00Z
77+
const UpgradeLightningHeight = 489154
7878

79-
// 2023-04-24T16:30:00Z
80-
const UpgradeThunderHeight = UpgradeLightningHeight + 11520
79+
// 2023-04-21T16:00:00Z
80+
const UpgradeThunderHeight = UpgradeLightningHeight + 3120
8181

8282
var SupportedProofTypes = []abi.RegisteredSealProof{
8383
abi.RegisteredSealProof_StackedDrg32GiBV1,

chain/consensus/filcns/upgrades.go

+3-8
Original file line numberDiff line numberDiff line change
@@ -252,14 +252,9 @@ func DefaultUpgradeSchedule() stmgr.UpgradeSchedule {
252252
Migration: UpgradeActorsV11,
253253
PreMigrations: []stmgr.PreMigration{{
254254
PreMigration: PreUpgradeActorsV11,
255-
StartWithin: 240,
256-
DontStartWithin: 60,
257-
StopWithin: 20,
258-
}, {
259-
PreMigration: PreUpgradeActorsV11,
260-
StartWithin: 15,
261-
DontStartWithin: 10,
262-
StopWithin: 5,
255+
StartWithin: 120,
256+
DontStartWithin: 15,
257+
StopWithin: 10,
263258
}},
264259
Expensive: true,
265260
}, {

0 commit comments

Comments
 (0)