From 001513f78b3058d946a530b227a00841c896d944 Mon Sep 17 00:00:00 2001 From: Phi Date: Mon, 12 Feb 2024 14:25:16 +0100 Subject: [PATCH] Update epoch after nv22 DRAND switch Update epoch after nv22 DRAND switch --- build/params_2k.go | 2 +- build/params_butterfly.go | 2 +- build/params_calibnet.go | 2 +- build/params_interop.go | 2 +- build/params_mainnet.go | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build/params_2k.go b/build/params_2k.go index 2ab97a0d4..3d2752db1 100644 --- a/build/params_2k.go +++ b/build/params_2k.go @@ -69,7 +69,7 @@ var UpgradeWatermelonHeight = abi.ChainEpoch(-24) var UpgradeDragonHeight = abi.ChainEpoch(20) -var UpgradeMangoHeight = UpgradeDragonHeight + 10 +var UpgradeMangoHeight = UpgradeDragonHeight + 100 // This fix upgrade only ran on calibrationnet const UpgradeWatermelonFixHeight = -100 diff --git a/build/params_butterfly.go b/build/params_butterfly.go index 062d2f215..b60344b1e 100644 --- a/build/params_butterfly.go +++ b/build/params_butterfly.go @@ -59,7 +59,7 @@ const UpgradeWatermelonHeight = -24 const UpgradeDragonHeight = 5760 -const UpgradeMangoHeight = UpgradePineappleHeight + 10 +const UpgradeMangoHeight = UpgradeDragonHeight + 100 // This fix upgrade only ran on calibrationnet const UpgradeWatermelonFixHeight = -100 diff --git a/build/params_calibnet.go b/build/params_calibnet.go index 5b77ac647..c8b9e96bb 100644 --- a/build/params_calibnet.go +++ b/build/params_calibnet.go @@ -92,7 +92,7 @@ const UpgradeWatermelonFix2Height = 1108174 // 2024-02-27T14:00:00Z const UpgradeDragonHeight = 1390534 -const UpgradeMangoHeight = UpgradePineappleHeight + 10 +const UpgradeMangoHeight = UpgradeDragonHeight + 100 var SupportedProofTypes = []abi.RegisteredSealProof{ abi.RegisteredSealProof_StackedDrg32GiBV1, diff --git a/build/params_interop.go b/build/params_interop.go index 00a178807..56587722e 100644 --- a/build/params_interop.go +++ b/build/params_interop.go @@ -57,7 +57,7 @@ var UpgradeWatermelonHeight = abi.ChainEpoch(-24) const UpgradeDragonHeight = 50 -const UpgradeMangoHeight = UpgradePineappleHeight + 10 +const UpgradeMangoHeight = UpgradeDragonHeight + 100 // This fix upgrade only ran on calibrationnet const UpgradeWatermelonFixHeight = -1 diff --git a/build/params_mainnet.go b/build/params_mainnet.go index 7c32433e6..237a2965a 100644 --- a/build/params_mainnet.go +++ b/build/params_mainnet.go @@ -102,9 +102,9 @@ const UpgradeWatermelonHeight = 3469380 // ?????? var UpgradeDragonHeight = abi.ChainEpoch(999999999999999) -// This epoch, 10 epochs after the "rest" of the nv22 upgrade, is when we switch to Drand quicknet +// This epoch, 100 epochs after the "rest" of the nv22 upgrade, is when we switch to Drand quicknet // ?????? -var UpgradeMangoHeight = UpgradeDragonHeight + 10 +var UpgradeMangoHeight = UpgradeDragonHeight + 100 // This fix upgrade only ran on calibrationnet const UpgradeWatermelonFixHeight = -1