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 geth gaslimit (AUTO-9280) #12571

Merged
merged 4 commits into from
Mar 25, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,10 @@ Load Config:
Values: map[string]interface{}{
"resources": gethNodeSpec,
"geth": map[string]interface{}{
"blocktime": *loadedTestConfig.Automation.General.BlockTime,
"capacity": "20Gi",
"blocktime": *loadedTestConfig.Automation.General.BlockTime,
"capacity": "20Gi",
"startGaslimit": "20000000",
"targetGasLimit": "30000000",
Comment on lines +204 to +205
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keeping these values hardcoded for now. If need be, can be made configurable.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How will the start and target limits be used?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here is the corresponding changes in the geth chart - https://github.com/smartcontractkit/chainlink-testing-framework/pull/875/files

},
},
}))
Expand Down
Loading