-
Notifications
You must be signed in to change notification settings - Fork 249
[WIP] test: use ev-reth pr-106 image to validate reth v1.10.1 upgrade #3066
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -271,6 +271,7 @@ type RethSetupConfig struct { | |
| func (s *DockerTestSuite) SetupRethNode(ctx context.Context, name string) RethSetupConfig { | ||
| rethNode, err := reth.NewNodeBuilder(s.T()). | ||
| WithName(name). | ||
| WithTag("pr-106"). | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This hardcoded tag |
||
| WithGenesis([]byte(reth.DefaultEvolveGenesisJSON())). | ||
| WithDockerClient(s.dockerClient). | ||
| WithDockerNetworkID(s.dockerNetworkID). | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hardcoding the image tag
pr-106makes the test suite dependent on a temporary build artifact. Since this PR is a work-in-progress for testing, this is understandable, but this line should be removed before merging. For future flexibility, consider making the tag configurable via an environment variable, a pattern seen elsewhere in the test suite.