diff --git a/documentation/en/default-lotus-config.toml b/documentation/en/default-lotus-config.toml index 378c5be73..41d7e6aca 100644 --- a/documentation/en/default-lotus-config.toml +++ b/documentation/en/default-lotus-config.toml @@ -293,59 +293,6 @@ #Tracing = false -[Events] - # EnableEthRPC enables APIs that - # DisableRealTimeFilterAPI will disable the RealTimeFilterAPI that can create and query filters for actor events as they are emitted. - # The API is enabled when EnableEthRPC is true, but can be disabled selectively with this flag. - # - # type: bool - # env var: LOTUS_EVENTS_DISABLEREALTIMEFILTERAPI - #DisableRealTimeFilterAPI = false - - # DisableHistoricFilterAPI will disable the HistoricFilterAPI that can create and query filters for actor events - # that occurred in the past. HistoricFilterAPI maintains a queryable index of events. - # The API is enabled when EnableEthRPC is true, but can be disabled selectively with this flag. - # - # type: bool - # env var: LOTUS_EVENTS_DISABLEHISTORICFILTERAPI - #DisableHistoricFilterAPI = false - - # FilterTTL specifies the time to live for actor event filters. Filters that haven't been accessed longer than - # this time become eligible for automatic deletion. - # - # type: Duration - # env var: LOTUS_EVENTS_FILTERTTL - #FilterTTL = "0s" - - # MaxFilters specifies the maximum number of filters that may exist at any one time. - # - # type: int - # env var: LOTUS_EVENTS_MAXFILTERS - #MaxFilters = 0 - - # MaxFilterResults specifies the maximum number of results that can be accumulated by an actor event filter. - # - # type: int - # env var: LOTUS_EVENTS_MAXFILTERRESULTS - #MaxFilterResults = 0 - - # MaxFilterHeightRange specifies the maximum range of heights that can be used in a filter (to avoid querying - # the entire chain) - # - # type: uint64 - # env var: LOTUS_EVENTS_MAXFILTERHEIGHTRANGE - #MaxFilterHeightRange = 0 - - # DatabasePath is the full path to a sqlite database that will be used to index actor events to - # support the historic filter APIs. If the database does not exist it will be created. The directory containing - # the database must already exist and be writeable. If a relative path is provided here, sqlite treats it as - # relative to the CWD (current working directory). - # - # type: string - # env var: LOTUS_EVENTS_DATABASEPATH - #DatabasePath = "" - - [Fevm] # EnableEthRPC enables eth_ rpc, and enables storing a mapping of eth transaction hashes to filecoin message Cids. # This will also enable the RealTimeFilterAPI and HistoricFilterAPI by default, but they can be disabled by config options above. diff --git a/node/config/def.go b/node/config/def.go index 663408d39..9a24449ba 100644 --- a/node/config/def.go +++ b/node/config/def.go @@ -102,7 +102,7 @@ func DefaultFullNode() *FullNode { Fevm: FevmConfig{ EnableEthRPC: false, EthTxHashMappingLifetimeDays: 0, - Events: EventsConfig{ + Events: Events{ DisableRealTimeFilterAPI: false, DisableHistoricFilterAPI: false, FilterTTL: Duration(time.Hour * 24), diff --git a/node/config/doc_gen.go b/node/config/doc_gen.go index 052d1924d..8b79bed4f 100644 --- a/node/config/doc_gen.go +++ b/node/config/doc_gen.go @@ -341,7 +341,7 @@ see https://lotus.filecoin.io/storage-providers/advanced-configurations/market/# Comment: ``, }, }, - "EventsConfig": []DocField{ + "Events": []DocField{ { Name: "DisableRealTimeFilterAPI", Type: "bool", @@ -419,7 +419,7 @@ Set to 0 to keep all mappings`, }, { Name: "Events", - Type: "EventsConfig", + Type: "Events", Comment: ``, }, @@ -455,12 +455,6 @@ Set to 0 to keep all mappings`, Comment: ``, }, - { - Name: "Events", - Type: "EventsConfig", - - Comment: ``, - }, { Name: "Fevm", Type: "FevmConfig", diff --git a/node/config/types.go b/node/config/types.go index 546c24655..690e8caee 100644 --- a/node/config/types.go +++ b/node/config/types.go @@ -27,7 +27,6 @@ type FullNode struct { Fees FeeConfig Chainstore Chainstore Cluster UserRaftConfig - Events EventsConfig Fevm FevmConfig } @@ -669,10 +668,10 @@ type FevmConfig struct { // Set to 0 to keep all mappings EthTxHashMappingLifetimeDays int - Events EventsConfig + Events Events } -type EventsConfig struct { +type Events struct { // EnableEthRPC enables APIs that // DisableRealTimeFilterAPI will disable the RealTimeFilterAPI that can create and query filters for actor events as they are emitted. // The API is enabled when EnableEthRPC is true, but can be disabled selectively with this flag.