From dd5634ac32705b8390e7a65499b1d491dca04bfd Mon Sep 17 00:00:00 2001 From: Ragnar Date: Fri, 28 Feb 2025 16:48:49 +0100 Subject: [PATCH] Update backend.go --- internal/ethapi/backend.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/ethapi/backend.go b/internal/ethapi/backend.go index d23e6f5ca1..3d8f7aa700 100644 --- a/internal/ethapi/backend.go +++ b/internal/ethapi/backend.go @@ -92,7 +92,6 @@ 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)