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

Initial Config Update #168

Merged
merged 2 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,7 @@ type DataLayerConfig struct {
SSL SSLConfig `yaml:"ssl" json:"ssl"`
Plugins DataLayerPlugins `yaml:"plugins" json:"plugins"`
MaximumFullFileCount uint16 `yaml:"maximum_full_file_count" json:"maximum_full_file_count"`
GroupFilesByStore bool `yaml:"group_files_by_store" json:"group_files_by_store"` // False is default, so non-ptr is fine here
}

// DataLayerPlugins Settings for data layer plugins
Expand Down
5 changes: 2 additions & 3 deletions pkg/config/initial-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ network_overrides: &network_overrides
SUB_SLOT_ITERS_STARTING: 67108864
# Forks activated from the beginning on this network
HARD_FORK_HEIGHT: 0
SOFT_FORK4_HEIGHT: 641500
SOFT_FORK5_HEIGHT: 1340000
PLOT_FILTER_128_HEIGHT: 6029568
PLOT_FILTER_64_HEIGHT: 11075328
Expand Down Expand Up @@ -426,7 +425,6 @@ full_node:
- "dns-introducer.chia.net"
- "chia.ctrlaltdel.ch"
- "seeder.dexie.space"
- "chia-seeder.h9.com"
- "chia.hoffmang.com"
- "seeder.xchpool.org"
introducer_peer:
Expand Down Expand Up @@ -651,6 +649,8 @@ data_layer:
uploaders: []
downloaders: []
maximum_full_file_count: 1
# Enable to store all .DAT files grouped by store id
group_files_by_store: False

simulator:
# Should the simulator farm a block whenever a transaction is in mempool
Expand All @@ -672,5 +672,4 @@ simulator:

# Fork Settings
HARD_FORK_HEIGHT: 0
SOFT_FORK4_HEIGHT: 0
SOFT_FORK5_HEIGHT: 0