make cfgdoc-gen

This commit is contained in:
vyzo 2021-07-24 09:00:00 +03:00
parent 4cdb34e448
commit 20f93a520f

View File

@ -685,25 +685,37 @@ submitting proofs to the chain individually`,
Name: "ColdStoreType", Name: "ColdStoreType",
Type: "string", Type: "string",
Comment: ``, Comment: `ColdStoreType specifies the type of the coldstore.
It can be "universal" (default) or "discard" for discarding cold blocks.`,
}, },
{ {
Name: "HotStoreType", Name: "HotStoreType",
Type: "string", Type: "string",
Comment: ``, Comment: `HotStoreType specifies the type of the hotstore.
Only currently supported value is "badger".`,
}, },
{ {
Name: "MarkSetType", Name: "MarkSetType",
Type: "string", Type: "string",
Comment: ``, Comment: `MarkSetType specifies the type of the markset.
It can be "map" (default) for in memory marking or "badger" for on-disk marking.`,
}, },
{ {
Name: "HotStoreMessageRetention", Name: "HotStoreMessageRetention",
Type: "uint64", Type: "uint64",
Comment: ``, Comment: `HotStoreMessageRetention specifies the retention policy for messages, in finalities beyond
the compaction boundary; default is 0.`,
},
{
Name: "HotStoreMovingGCFrequency",
Type: "uint64",
Comment: `HotStoreMovingGCFrequency specifies how often to perform moving GC on the hotstore.
A value of 0 disables, while a value 1 will do moving GC in every compaction.
Default is 20 (about once a week).`,
}, },
}, },
"StorageMiner": []DocField{ "StorageMiner": []DocField{