Skip to content
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

make PBSS the default for new installations #404

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shared/services/config/geth-params.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func NewGethConfig(cfg *RocketPoolConfig) *GethConfig {
Name: "Enable PBSS",
Description: "Enable Geth's new path-based state scheme. With this enabled, you will no longer need to manually prune Geth; it will automatically prune its database in real-time.\n\n[orange]NOTE:\nEnabling this will require you to remove and resync your Geth DB using `rocketpool service resync-eth1`.\nYou will need a synced fallback node configured before doing this, or you will no longer be able to attest until it has finished resyncing!",
Type: config.ParameterType_Bool,
Default: map[config.Network]interface{}{config.Network_All: false},
Default: map[config.Network]interface{}{config.Network_All: true},
AffectsContainers: []config.ContainerID{config.ContainerID_Eth1},
EnvironmentVariables: []string{"GETH_ENABLE_PBSS"},
CanBeBlank: false,
Expand Down