Skip to content

Commit

Permalink
fix panic in config
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspanf committed Aug 7, 2024
1 parent 0c01757 commit ac800d6
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 ac800d6

Please sign in to comment.