diff --git a/documentation/en/default-lotus-config.toml b/documentation/en/default-lotus-config.toml index 0e125c8fb..1f143b896 100644 --- a/documentation/en/default-lotus-config.toml +++ b/documentation/en/default-lotus-config.toml @@ -195,7 +195,7 @@ [Chainstore.Splitstore] # ColdStoreType specifies the type of the coldstore. - # It can be "discard" (default) for discarding cold blocks, "messages" (default) to store only messages or "universal" to store all chain state.. + # It can be "discard" (default) for discarding cold blocks, "messages" to store only messages or "universal" to store all chain state.. # # type: string # env var: LOTUS_CHAINSTORE_SPLITSTORE_COLDSTORETYPE diff --git a/node/config/doc_gen.go b/node/config/doc_gen.go index 23e2c06be..4ea235704 100644 --- a/node/config/doc_gen.go +++ b/node/config/doc_gen.go @@ -1302,7 +1302,7 @@ Submitting a smaller number of prove commits per epoch would reduce the possibil Type: "string", Comment: `ColdStoreType specifies the type of the coldstore. -It can be "discard" (default) for discarding cold blocks, "messages" (default) to store only messages or "universal" to store all chain state..`, +It can be "discard" (default) for discarding cold blocks, "messages" to store only messages or "universal" to store all chain state..`, }, { Name: "HotStoreType", diff --git a/node/config/types.go b/node/config/types.go index e740ea24a..95721a579 100644 --- a/node/config/types.go +++ b/node/config/types.go @@ -585,7 +585,7 @@ type Chainstore struct { type Splitstore struct { // ColdStoreType specifies the type of the coldstore. - // It can be "discard" (default) for discarding cold blocks, "messages" (default) to store only messages or "universal" to store all chain state.. + // It can be "discard" (default) for discarding cold blocks, "messages" 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".