@@ -88,7 +88,7 @@ func (b *EthereumNetworkBuilder) WithConsensusLayer(consensusLayer config.Consen
8888}
8989
9090// WithExecutionLayer sets the execution layer for the Ethereum network builder.
91- // It allows users to specify which execution layer to use, ensuring compatibility
91+ // It allows users to specify which execution layer to use, ensuring compatibility
9292// with the selected Ethereum version and consensus layer.
9393func (b * EthereumNetworkBuilder ) WithExecutionLayer (executionLayer config_types.ExecutionLayer ) * EthereumNetworkBuilder {
9494 b .executionLayer = executionLayer
@@ -103,7 +103,7 @@ func (b *EthereumNetworkBuilder) WithEthereumChainConfig(config config.EthereumC
103103}
104104
105105// WithDockerNetworks sets the Docker networks for the Ethereum network builder.
106- // It allows users to specify custom networks for containerized deployments,
106+ // It allows users to specify custom networks for containerized deployments,
107107// enhancing flexibility in network configuration.
108108func (b * EthereumNetworkBuilder ) WithDockerNetworks (networks []string ) * EthereumNetworkBuilder {
109109 b .dockerNetworks = networks
@@ -119,15 +119,15 @@ func (b *EthereumNetworkBuilder) WithNodeLogLevel(nodeLogLevel string) *Ethereum
119119}
120120
121121// WithExistingConfig sets an existing Ethereum network configuration for the builder.
122- // It allows users to customize the network setup using predefined settings,
122+ // It allows users to customize the network setup using predefined settings,
123123// facilitating the creation of a network with specific parameters.
124124func (b * EthereumNetworkBuilder ) WithExistingConfig (config config.EthereumNetworkConfig ) * EthereumNetworkBuilder {
125125 b .existingConfig = & config
126126 return b
127127}
128128
129- // WithExistingConfigFromEnvVar enables the use of an existing Ethereum configuration
130- // sourced from an environment variable. This allows for flexible deployment
129+ // WithExistingConfigFromEnvVar enables the use of an existing Ethereum configuration
130+ // sourced from an environment variable. This allows for flexible deployment
131131// configurations without hardcoding values, enhancing security and adaptability.
132132func (b * EthereumNetworkBuilder ) WithExistingConfigFromEnvVar () * EthereumNetworkBuilder {
133133 b .existingFromEnvVar = true
@@ -143,7 +143,7 @@ func (b *EthereumNetworkBuilder) WithTest(t *testing.T) *EthereumNetworkBuilder
143143}
144144
145145// WithCustomDockerImages sets custom Docker images for the Ethereum network builder.
146- // This allows users to specify their own container images for different components,
146+ // This allows users to specify their own container images for different components,
147147// enabling greater flexibility and customization in the network setup.
148148func (b * EthereumNetworkBuilder ) WithCustomDockerImages (newImages map [config.ContainerType ]string ) * EthereumNetworkBuilder {
149149 b .customDockerImages = newImages
@@ -787,7 +787,7 @@ func (en *EthereumNetwork) getImageOverride(ct config.ContainerType) string {
787787}
788788
789789// Save persists the configuration of the Ethereum network to a TOML file.
790- // It generates a unique filename and logs the path for future reference in end-to-end tests.
790+ // It generates a unique filename and logs the path for future reference in end-to-end tests.
791791// This function is essential for maintaining consistent test environments.
792792func (en * EthereumNetwork ) Save () error {
793793 name := fmt .Sprintf ("ethereum_network_%s" , uuid .NewString ()[0 :8 ])
0 commit comments