From b91198aee5c1ccc3f9df035b09bd5554064f472b Mon Sep 17 00:00:00 2001 From: Ragnar Date: Thu, 27 Feb 2025 01:42:40 +0100 Subject: [PATCH] Update backend.go --- internal/ethapi/backend.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/ethapi/backend.go b/internal/ethapi/backend.go index 3d8f7aa700..d23e6f5ca1 100644 --- a/internal/ethapi/backend.go +++ b/internal/ethapi/backend.go @@ -92,6 +92,7 @@ type Backend interface { GetBody(ctx context.Context, hash common.Hash, number rpc.BlockNumber) (*types.Body, error) GetLogs(ctx context.Context, blockHash common.Hash, number uint64) ([][]*types.Log, error) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription + SubscribeRemovedLogsReverseEvent(ch chan<- core.RemovedLogsEvent) event.Subscription SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription BloomStatus() (uint64, uint64) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession)