Skip to content

Commit 052cfcb

Browse files
committed
chore: set calibnet upgrade epoch
1 parent c5d49b2 commit 052cfcb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

fixtures/networks/calibration.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func Calibration() *NetworkConf {
7474
UpgradeWaffleHeight: 1779094, // 2024-07-11T12:00:00Z
7575
UpgradeTuktukHeight: 2078794, // 2024-10-23T13:30:00Z
7676
UpgradeTuktukPowerRampDurationEpochs: builtin.EpochsInDay * 3,
77-
UpgradeTeepHeight: 2520574, // 2025-03-25T23:00:00Z
77+
UpgradeTeepHeight: 2523454, // 2025-03-26T23:00:00Z
7878
},
7979
DrandSchedule: map[abi.ChainEpoch]config.DrandEnum{0: 1},
8080
AddressNetwork: address.Testnet,

pkg/config/config.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import (
1919
"github.com/pkg/errors"
2020

2121
"github.com/filecoin-project/venus/pkg/constants"
22+
"github.com/filecoin-project/venus/venus-shared/actors/builtin"
2223
"github.com/filecoin-project/venus/venus-shared/types"
2324
)
2425

@@ -399,7 +400,8 @@ var DefaultForkUpgradeParam = &ForkUpgradeConfig{
399400
UpgradeWaffleHeight: 4154640,
400401
UpgradeTuktukHeight: 4461240,
401402
UpgradeTuktukPowerRampDurationEpochs: 200,
402-
UpgradeTeepHeight: 9999999999,
403+
UpgradeTeepHeight: 9999999998,
404+
UpgradeTockHeight: 9999999998 + 90*builtin.EpochsInDay,
403405
}
404406

405407
func newDefaultNetworkParamsConfig() *NetworkParamsConfig {

0 commit comments

Comments
 (0)