Update ColdStoreType comments

Update comments to say that "discard" is the default mode in SplitStore.
This commit is contained in:
Phi 2023-09-19 12:32:41 +02:00
parent 8aaa8de975
commit e5f32f288d

View File

@ -585,7 +585,7 @@ type Chainstore struct {
type Splitstore struct {
// ColdStoreType specifies the type of the coldstore.
// It can be "messages" (default) to store only messages, "universal" to store all chain state or "discard" for discarding cold blocks.
// It can be "discard" (default) for discarding cold blocks, "messages" (default) to store only messages or "universal" to store all chain state..
ColdStoreType string
// HotStoreType specifies the type of the hotstore.
// Only currently supported value is "badger".