-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[ETCM-942] Muir Glacier #1107
[ETCM-942] Muir Glacier #1107
Conversation
7edc71c
to
985aa70
Compare
create(12644529) shouldBe ForkId(0x879d6e30L, None) // Today Istanbul block | ||
create(9069000) shouldBe ForkId(0x879d6e30L, Some(9200000)) // First Istanbul block | ||
create(9200000 - 1) shouldBe ForkId(0x879d6e30L, Some(9200000)) // Last Istanbul block | ||
create(9200000) shouldBe ForkId(0xe029e991L, None) // First Muir Glacier block |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we miss Berlin somewhere after Muir Glacier ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do, it's going to be added after Muir is in
@@ -9,6 +9,7 @@ object EthashDifficultyCalculator extends DifficultyCalculator { | |||
private val ExpDifficultyPeriod: Int = 100000 | |||
private val ByzantiumRelaxDifficulty: BigInt = 3000000 | |||
private val ConstantinopleRelaxDifficulty: BigInt = 5000000 | |||
private val MuirGlacierRelaxDifficulty: BigInt = 9000000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just for the sake of lisibility (and because I have bad eyes), wouldn't be nice to use the 9_000_000 syntax for all those multiple-zeros numbers ?
val difficulty: BigInt = EthashDifficultyCalculator.calculateDifficulty(blockNumber, blockTimestamp, parent.header)( | ||
blockchainConfigWithoutDifficultyBombRemoval | ||
) | ||
val blockDifficultyWihtoutBomb = BigInt("22638070096265") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the sake of completness, are those numbers taken from somewhere ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not really, they have to be calculated manually. Without the delay this number is orders of magnitude bigger
33c15b0
to
d22b6a2
Compare
d22b6a2
to
6f9c1b5
Compare
* [ETCM-942] Add Muir Glacier block height to configs * [ETCM-942] Implement Muir Glacier delay * [ETCM-942] Make difficulty costants more readable
Description
This PR introduces changes necessary for the Muir Glacier hard fork
https://eips.ethereum.org/EIPS/eip-2387