Skip to content

Commit

Permalink
Fix param type
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfornax committed Apr 25, 2024
1 parent 1ed3255 commit 591daf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shared/services/config/geth-params.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewGethConfig(cfg *RocketPoolConfig) *GethConfig {
Name: "EVM Timeout",
Description: "The number of seconds an Execution Client API call is allowed to run before Geth times out and aborts it. Increase this if you see a lot of timeout errors in your logs.",
Type: config.ParameterType_Uint16,
Default: map[config.Network]interface{}{config.Network_All: 5},
Default: map[config.Network]interface{}{config.Network_All: uint16(5)},
AffectsContainers: []config.ContainerID{config.ContainerID_Eth1},
CanBeBlank: false,
OverwriteOnUpgrade: false,
Expand Down
2 changes: 1 addition & 1 deletion shared/version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package shared

const RocketPoolVersion string = "1.13.0"
const RocketPoolVersion string = "1.13.1-dev"

const Logo string = `______ _ _ ______ _
| ___ \ | | | | | ___ \ | |
Expand Down

0 comments on commit 591daf1

Please sign in to comment.