Godoc for indexer constructor
All checks were successful
Test / Run unit tests (pull_request) Successful in 16m38s
Test / Run compliance tests (pull_request) Successful in 3m49s
Test / Run integration tests (pull_request) Successful in 31m21s

This commit is contained in:
Roy Crihfield 2023-09-29 20:50:11 +08:00
parent f0e7c74362
commit d80e2104de

View File

@ -33,6 +33,10 @@ import (
)
// NewStateDiffIndexer creates and returns an implementation of the StateDiffIndexer interface.
// `chainConfig` is used when processing chain state.
// `nodeInfo` contains metadata on the Ethereum node, which is inserted with the indexed state.
// `config` contains configuration specific to the indexer.
// `diff` tells us to mark state nodes as belonging to an incremental diff, as opposed to a full snapshot.
func NewStateDiffIndexer(
ctx context.Context,
chainConfig *params.ChainConfig,