Skip to content

Commit 7eb2059

Browse files
committed
Removing support for pending logs
As per ethereum/go-ethereum#29574 PR
1 parent 3f05aeb commit 7eb2059

File tree

1 file changed

+1
-1
lines changed
  • rpc/namespaces/ethereum/eth/filters

1 file changed

+1
-1
lines changed

rpc/namespaces/ethereum/eth/filters/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ func (api *PublicFilterAPI) GetFilterChanges(id rpc.ID) (interface{}, error) {
638638
hashes := f.hashes
639639
f.hashes = nil
640640
return returnHashes(hashes), nil
641-
case filters.LogsSubscription, filters.MinedAndPendingLogsSubscription:
641+
case filters.LogsSubscription:
642642
logs := make([]*ethtypes.Log, len(f.logs))
643643
copy(logs, f.logs)
644644
f.logs = []*ethtypes.Log{}

0 commit comments

Comments
 (0)