Merge pull request #10969 from filecoin-project/sbansal/msgindex-comment-rel

Add comment stating msgIndex is an experimental feature
This commit is contained in:
Shrenuj Bansal 2023-06-09 12:58:36 -05:00 committed by GitHub
commit a81bb4a6f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View File

@ -391,6 +391,7 @@
[Index]
# EXPERIMENTAL FEATURE. USE WITH CAUTION
# EnableMsgIndex enables indexing of messages on chain.
#
# type: bool

View File

@ -473,7 +473,8 @@ Set to 0 to keep all mappings`,
Name: "EnableMsgIndex",
Type: "bool",
Comment: `EnableMsgIndex enables indexing of messages on chain.`,
Comment: `EXPERIMENTAL FEATURE. USE WITH CAUTION
EnableMsgIndex enables indexing of messages on chain.`,
},
},
"IndexProviderConfig": []DocField{

View File

@ -736,6 +736,7 @@ type Events struct {
}
type IndexConfig struct {
// EXPERIMENTAL FEATURE. USE WITH CAUTION
// EnableMsgIndex enables indexing of messages on chain.
EnableMsgIndex bool
}