Skip to content

Commit

Permalink
Merge pull request #619 from rocket-pool/fix-panic-nethermind-params
Browse files Browse the repository at this point in the history
Fix panic in config
  • Loading branch information
0xfornax authored Aug 14, 2024
2 parents bd5bb37 + ac800d6 commit 2d03896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/services/config/nethermind-params.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func NewNethermindConfig(cfg *RocketPoolConfig) *NethermindConfig {
Name: "Full pruning parallelism",
Description: "This option will be used to determine the number of threads allocated to concurrently by Nethermind to prune data.",
Type: config.ParameterType_Int,
Default: map[config.Network]interface{}{config.Network_All: 0},
Default: map[config.Network]interface{}{config.Network_All: int64(0)},
AffectsContainers: []config.ContainerID{config.ContainerID_Eth1},
CanBeBlank: false,
OverwriteOnUpgrade: false,
Expand Down

0 comments on commit 2d03896

Please sign in to comment.