Skip to content

Commit

Permalink
Merge pull request #3628 from filecoin-project/fix/fork-treshold
Browse files Browse the repository at this point in the history
Upgrade to correct fork treshold
  • Loading branch information
Jakub Sztandera authored Sep 7, 2020
2 parents 3741186 + 46ee2ee commit ca919dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/messagepool/selection.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ca919dd

Please sign in to comment.