Skip to content

Commit

Permalink
Initial Config Update (#168)
Browse files Browse the repository at this point in the history
* Add updated initial config from chia-blockchain

* Add GroupFilesByStore to Config

---------

Co-authored-by: ChiaAutomation <[email protected]>
Co-authored-by: Chris Marslender <[email protected]>
  • Loading branch information
3 people authored Oct 17, 2024
1 parent 043257d commit 3e9792e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 3e9792e

Please sign in to comment.