Skip to content

Commit

Permalink
Fix geth scripts (sigp#4342)
Browse files Browse the repository at this point in the history
N/A

Geth's latest release breaks our CI with the following message
```
Fatal: Failed to register the Ethereum service: ethash is only supported as a historical component of already merged networks
Shutting down
```
Latest geth version has removed support for PoW networks. Hence, we need to add an extra `terminalTotalDifficultyPassed ` parameter in the genesis config to start from a merged network.
  • Loading branch information
pawanjay176 authored and Woodpile37 committed Jan 6, 2024
1 parent 6e3eb27 commit 91e8e65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/tests/genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"berlinBlock": 0,
"londonBlock": 0,
"mergeForkBlock": 0,
"terminalTotalDifficulty": 0
"terminalTotalDifficulty": 0,
"terminalTotalDifficultyPassed": true
},
"alloc": {
"0x0000000000000000000000000000000000000000": {
Expand Down

0 comments on commit 91e8e65

Please sign in to comment.