Fix geth scripts (#4342)

## Issue Addressed

N/A

## Proposed Changes

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.
This commit is contained in:
Pawan Dhananjay 2023-05-30 01:38:50 +00:00
parent 2a7e54d8bd
commit a7da331f6a
2 changed files with 4 additions and 2 deletions

View File

@ -13,7 +13,8 @@
"londonBlock": 0, "londonBlock": 0,
"mergeNetsplitBlock": 0, "mergeNetsplitBlock": 0,
"shanghaiTime": 0, "shanghaiTime": 0,
"terminalTotalDifficulty": 0 "terminalTotalDifficulty": 0,
"terminalTotalDifficultyPassed": true
}, },
"alloc": { "alloc": {
"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b": { "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b": {

View File

@ -12,7 +12,8 @@
"berlinBlock": 0, "berlinBlock": 0,
"londonBlock": 0, "londonBlock": 0,
"mergeForkBlock": 0, "mergeForkBlock": 0,
"terminalTotalDifficulty": 0 "terminalTotalDifficulty": 0,
"terminalTotalDifficultyPassed": true
}, },
"alloc": { "alloc": {
"0x0000000000000000000000000000000000000000": { "0x0000000000000000000000000000000000000000": {