Enable Byzantium if Callisto is not available

This commit is contained in:
Yohan Graterol 2017-12-01 01:00:31 -05:00
parent 097c81aece
commit 38af7d7d26

View file

@ -537,7 +537,7 @@ func AccumulateRewards(config *params.ChainConfig, state *state.StateDB, header
blockReward = callistoBlockReward
}
if config.IsByzantium(header.Number) {
if config.IsByzantium(header.Number) && !config.IsCallisto(header.Number) {
blockReward = ByzantiumBlockReward
}