mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 17:03:46 +00:00
Enable Byzantium if Callisto is not available
This commit is contained in:
parent
097c81aece
commit
38af7d7d26
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue