Merge pull request #11274 from filecoin-project/fix/update-splitstore-config-comments

fix: config: Update ColdStoreType comments
This commit is contained in:
Łukasz Magiera 2023-09-22 15:36:54 +02:00 committed by GitHub
commit a8d693a2c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -195,7 +195,7 @@
[Chainstore.Splitstore] [Chainstore.Splitstore]
# ColdStoreType specifies the type of the coldstore. # 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" to store only messages or "universal" to store all chain state..
# #
# type: string # type: string
# env var: LOTUS_CHAINSTORE_SPLITSTORE_COLDSTORETYPE # env var: LOTUS_CHAINSTORE_SPLITSTORE_COLDSTORETYPE

View File

@ -1302,7 +1302,7 @@ Submitting a smaller number of prove commits per epoch would reduce the possibil
Type: "string", Type: "string",
Comment: `ColdStoreType specifies the type of the coldstore. Comment: `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" to store only messages or "universal" to store all chain state..`,
}, },
{ {
Name: "HotStoreType", Name: "HotStoreType",

View File

@ -585,7 +585,7 @@ type Chainstore struct {
type Splitstore struct { type Splitstore struct {
// ColdStoreType specifies the type of the coldstore. // 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" to store only messages or "universal" to store all chain state..
ColdStoreType string ColdStoreType string
// HotStoreType specifies the type of the hotstore. // HotStoreType specifies the type of the hotstore.
// Only currently supported value is "badger". // Only currently supported value is "badger".