Skip to content

Commit

Permalink
Disable networking on OpStack configs (#6334)
Browse files Browse the repository at this point in the history
* Disable networking on OpStack configs

* Disable networking config for OP Stack testnets
  • Loading branch information
jmederosalvarado authored and kamilchodola committed Dec 14, 2023
1 parent 1c578f0 commit 17285a2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 16 deletions.
3 changes: 3 additions & 0 deletions src/Nethermind/Nethermind.Runner/configs/base-goerli.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"BaseDbPath" : "nethermind_db/base-goerli",
"LogFileName" : "base-goerli.logs.txt"
},
"Sync": {
"NetworkingEnabled": false
},
"JsonRpc" : {
"Enabled" : true,
"Port" : 8545,
Expand Down
3 changes: 3 additions & 0 deletions src/Nethermind/Nethermind.Runner/configs/base-mainnet.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
"LogFileName" : "base-mainnet.logs.txt",
"DisableGcOnNewPayload": false
},
"Sync": {
"NetworkingEnabled": false
},
"JsonRpc" : {
"Enabled" : true,
"Port" : 8545,
Expand Down
9 changes: 1 addition & 8 deletions src/Nethermind/Nethermind.Runner/configs/op-goerli.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,7 @@
"DisableGcOnNewPayload": false
},
"Sync": {
"FastSync": true,
"SnapSync": true,
"PivotNumber": 4061224,
"PivotHash": "0x0f783549ea4313b784eadd9b8e8a69913b368b7366363ea814d7707ac505175f",
"PivotTotalDifficulty": "8122447",
"FastBlocks": true,
"FastSyncCatchUpHeightDelta": "10000000000",
"MaxAttemptsToUpdatePivot": 0
"NetworkingEnabled": false
},
"JsonRpc": {
"Enabled": true,
Expand Down
9 changes: 1 addition & 8 deletions src/Nethermind/Nethermind.Runner/configs/op-mainnet.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,7 @@
"DisableGcOnNewPayload": false
},
"Sync": {
"FastSync": true,
"SnapSync": true,
"PivotNumber": 105235063,
"PivotHash": "0xdbf6a80fef073de06add9b0d14026d6e5a86c85f6d102c36d3d8e9cf89c2afd3",
"PivotTotalDifficulty": "210470125",
"FastBlocks": true,
"FastSyncCatchUpHeightDelta": "10000000000",
"MaxAttemptsToUpdatePivot": 0
"NetworkingEnabled": false
},
"JsonRpc": {
"Enabled": true,
Expand Down

0 comments on commit 17285a2

Please sign in to comment.