From 46ee2eeded7007838b4c18b754ce16d60e6c2adf Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Mon, 7 Sep 2020 23:07:33 +0200 Subject: [PATCH] Upgrade to correct fork treshold Signed-off-by: Jakub Sztandera --- chain/messagepool/selection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chain/messagepool/selection.go b/chain/messagepool/selection.go index 792d4ca50..454540dbd 100644 --- a/chain/messagepool/selection.go +++ b/chain/messagepool/selection.go @@ -22,7 +22,7 @@ var bigBlockGasLimit = big.NewInt(build.BlockGasLimit) // this is *temporary* mutilation until we have implemented uncapped miner penalties -- it will go // away in the next fork. func allowNegativeChains(epoch abi.ChainEpoch) bool { - return epoch < build.BreezeGasTampingDuration+5 + return epoch < build.UpgradeBreezeHeight+5 } const MaxBlocks = 15