mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-12 21:34:33 +00:00
change FkGlacierMuir to FkMuirGlacier [skip ci]
This commit is contained in:
parent
b3a519398e
commit
6591893158
@ -91,7 +91,7 @@ const
|
|||||||
eth2, # FkConstantinople
|
eth2, # FkConstantinople
|
||||||
eth2, # FkPetersburg
|
eth2, # FkPetersburg
|
||||||
eth2, # FkIstanbul
|
eth2, # FkIstanbul
|
||||||
eth2 # FkGlacierMuir
|
eth2 # FkMuirGlacier
|
||||||
]
|
]
|
||||||
|
|
||||||
proc processBlock*(chainDB: BaseChainDB, header: BlockHeader, body: BlockBody, vmState: BaseVMState): ValidationResult =
|
proc processBlock*(chainDB: BaseChainDB, header: BlockHeader, body: BlockBody, vmState: BaseVMState): ValidationResult =
|
||||||
|
@ -145,7 +145,7 @@ template calcDifficultyGlacierMuir*(timeStamp: EthTime, parent: BlockHeader): Di
|
|||||||
|
|
||||||
func calcDifficulty*(timeStamp: EthTime, parent: BlockHeader): DifficultyInt =
|
func calcDifficulty*(timeStamp: EthTime, parent: BlockHeader): DifficultyInt =
|
||||||
let next = parent.blockNumber + bigOne
|
let next = parent.blockNumber + bigOne
|
||||||
if next >= forkBlocks[FkGlacierMuir]:
|
if next >= forkBlocks[FkMuirGlacier]:
|
||||||
result = calcDifficultyGlacierMuir(timeStamp, parent)
|
result = calcDifficultyGlacierMuir(timeStamp, parent)
|
||||||
elif next >= forkBlocks[FkConstantinople]:
|
elif next >= forkBlocks[FkConstantinople]:
|
||||||
result = calcDifficultyConstantinople(timeStamp, parent)
|
result = calcDifficultyConstantinople(timeStamp, parent)
|
||||||
@ -158,7 +158,7 @@ func calcDifficulty*(timeStamp: EthTime, parent: BlockHeader): DifficultyInt =
|
|||||||
|
|
||||||
func calcDifficulty*(timeStamp: EthTime, parent: BlockHeader, fork: Fork): DifficultyInt =
|
func calcDifficulty*(timeStamp: EthTime, parent: BlockHeader, fork: Fork): DifficultyInt =
|
||||||
case fork
|
case fork
|
||||||
of FkGlacierMuir:
|
of FkMuirGlacier:
|
||||||
result = calcDifficultyGlacierMuir(timeStamp, parent)
|
result = calcDifficultyGlacierMuir(timeStamp, parent)
|
||||||
of FkConstantinople..FkPetersburg:
|
of FkConstantinople..FkPetersburg:
|
||||||
result = calcDifficultyConstantinople(timeStamp, parent)
|
result = calcDifficultyConstantinople(timeStamp, parent)
|
||||||
|
@ -724,7 +724,7 @@ const
|
|||||||
FkConstantinople: SpuriousGasFees,
|
FkConstantinople: SpuriousGasFees,
|
||||||
FkPetersburg: SpuriousGasFees,
|
FkPetersburg: SpuriousGasFees,
|
||||||
FkIstanbul: IstanbulGasFees,
|
FkIstanbul: IstanbulGasFees,
|
||||||
FkGlacierMuir: IstanbulGasFees
|
FkMuirGlacier: IstanbulGasFees
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ type
|
|||||||
FkConstantinople,
|
FkConstantinople,
|
||||||
FkPetersburg,
|
FkPetersburg,
|
||||||
FkIstanbul,
|
FkIstanbul,
|
||||||
FkGlacierMuir
|
FkMuirGlacier
|
||||||
|
|
||||||
const
|
const
|
||||||
forkBlocks*: array[Fork, BlockNumber] = [
|
forkBlocks*: array[Fork, BlockNumber] = [
|
||||||
@ -33,7 +33,7 @@ const
|
|||||||
FkConstantinople: 7_280_000.toBlockNumber, # Never Occured in MainNet
|
FkConstantinople: 7_280_000.toBlockNumber, # Never Occured in MainNet
|
||||||
FkPetersburg: 7_280_000.toBlockNumber, # 28/02/2019 07:52:04
|
FkPetersburg: 7_280_000.toBlockNumber, # 28/02/2019 07:52:04
|
||||||
FkIstanbul: 9_069_000.toBlockNumber, # 08/12/2019 12:25:09
|
FkIstanbul: 9_069_000.toBlockNumber, # 08/12/2019 12:25:09
|
||||||
FkGlacierMuir: 9_200_000.toBlockNumber # 02/01/2020 08:30:49
|
FkMuirGlacier: 9_200_000.toBlockNumber # 02/01/2020 08:30:49
|
||||||
]
|
]
|
||||||
|
|
||||||
proc toFork*(blockNumber: BlockNumber): Fork =
|
proc toFork*(blockNumber: BlockNumber): Fork =
|
||||||
@ -54,8 +54,8 @@ proc toFork*(blockNumber: BlockNumber): Fork =
|
|||||||
elif blockNumber < forkBlocks[FkByzantium]: FkSpurious
|
elif blockNumber < forkBlocks[FkByzantium]: FkSpurious
|
||||||
elif blockNumber < forkBlocks[FkConstantinople]: FkByzantium
|
elif blockNumber < forkBlocks[FkConstantinople]: FkByzantium
|
||||||
elif blockNumber < forkBlocks[FkIstanbul]: FkPetersburg
|
elif blockNumber < forkBlocks[FkIstanbul]: FkPetersburg
|
||||||
elif blockNumber < forkBlocks[FkGlacierMuir]: FkIstanbul
|
elif blockNumber < forkBlocks[FkMuirGlacier]: FkIstanbul
|
||||||
else: FkGlacierMuir
|
else: FkMuirGlacier
|
||||||
|
|
||||||
proc `$`*(fork: Fork): string =
|
proc `$`*(fork: Fork): string =
|
||||||
case fork
|
case fork
|
||||||
@ -69,4 +69,4 @@ proc `$`*(fork: Fork): string =
|
|||||||
of FkConstantinople: result = "Constantinople"
|
of FkConstantinople: result = "Constantinople"
|
||||||
of FkPetersburg: result = "Petersburg"
|
of FkPetersburg: result = "Petersburg"
|
||||||
of FkIstanbul: result = "Istanbul"
|
of FkIstanbul: result = "Istanbul"
|
||||||
of FkGlacierMuir: result = "Glacier Muir"
|
of FkMuirGlacier: result = "Glacier Muir"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user