mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 22:56:43 +00:00
Fix bor logs missing (#1361)
This commit is contained in:
parent
c73129ee39
commit
356e77454c
1 changed files with 1 additions and 1 deletions
|
|
@ -2090,7 +2090,7 @@ func RegisterFilterAPI(stack *node.Node, backend ethapi.Backend, ethcfg *ethconf
|
||||||
filterAPI := filters.NewFilterAPI(filterSystem, ethcfg.BorLogs)
|
filterAPI := filters.NewFilterAPI(filterSystem, ethcfg.BorLogs)
|
||||||
stack.RegisterAPIs([]rpc.API{{
|
stack.RegisterAPIs([]rpc.API{{
|
||||||
Namespace: "eth",
|
Namespace: "eth",
|
||||||
Service: filters.NewFilterAPI(filterSystem, false),
|
Service: filters.NewFilterAPI(filterSystem, ethcfg.BorLogs),
|
||||||
}})
|
}})
|
||||||
|
|
||||||
// avoiding constructor changed by introducing new method to set genesis
|
// avoiding constructor changed by introducing new method to set genesis
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue