Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase default gas limit from 30M to 36M #7879

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Nethermind/Nethermind.Runner.Test/ConfigFilesTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,9 @@ public void Arena_order_is_default(string configWildcard)

[TestCase("chiado", 17_000_000L, 5UL, 3000)]
[TestCase("gnosis", 17_000_000L, 5UL, 3000)]
[TestCase("mainnet", 30_000_000L)]
[TestCase("sepolia", 30_000_000L)]
[TestCase("holesky", 30_000_000L)]
[TestCase("mainnet", 36_000_000L)]
[TestCase("sepolia", 36_000_000L)]
[TestCase("holesky", 36_000_000L)]
[TestCase("^chiado ^gnosis ^mainnet ^sepolia ^holesky")]
public void Blocks_defaults_are_correct(string configWildcard, long? targetBlockGasLimit = null, ulong secondsPerSlot = 12, int blockProductionTimeout = 4000)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.Runner/configs/holesky.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"NodeName": "Holesky"
},
"Blocks": {
"TargetBlockGasLimit": 30000000
"TargetBlockGasLimit": 36000000
},
"JsonRpc": {
"Enabled": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"NodeName": "Holesky Archive"
},
"Blocks": {
"TargetBlockGasLimit": 30000000
"TargetBlockGasLimit": 36000000
},
"Receipt": {
"TxLookupLimit": 0
Expand Down
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.Runner/configs/mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"NodeName": "Mainnet"
},
"Blocks": {
"TargetBlockGasLimit": 30000000
"TargetBlockGasLimit": 36000000
},
"JsonRpc": {
"Enabled": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"NodeName": "Mainnet Archive"
},
"Blocks": {
"TargetBlockGasLimit": 30000000
"TargetBlockGasLimit": 36000000
},
"Receipt": {
"TxLookupLimit": 0
Expand Down
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.Runner/configs/mekong.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"UseGethLimitsInFastBlocks": true
},
"Blocks": {
"TargetBlockGasLimit": 30000000
"TargetBlockGasLimit": 36000000
},
"JsonRpc": {
"Enabled": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"NodeName": "Mekong archive"
},
"Blocks": {
"TargetBlockGasLimit": 30000000
"TargetBlockGasLimit": 36000000
},
"Receipt": {
"TxLookupLimit": 0
Expand Down
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.Runner/configs/sepolia.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"FastSyncCatchUpHeightDelta": "10000000000"
},
"Blocks": {
"TargetBlockGasLimit": 30000000
"TargetBlockGasLimit": 36000000
},
"JsonRpc": {
"Enabled": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"NodeName": "Sepolia Archive"
},
"Blocks": {
"TargetBlockGasLimit": 30000000
"TargetBlockGasLimit": 36000000
},
"Receipt": {
"TxLookupLimit": 0
Expand Down
Loading