From ff226b3ad42479dc3897236d47c455921ee0d23e Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 18 Nov 2019 15:16:55 +0100 Subject: [PATCH] core: remove PendingLogsEvent --- core/events.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/events.go b/core/events.go index 710bdb5894..ac935a137f 100644 --- a/core/events.go +++ b/core/events.go @@ -24,11 +24,6 @@ import ( // NewTxsEvent is posted when a batch of transactions enter the transaction pool. type NewTxsEvent struct{ Txs []*types.Transaction } -// PendingLogsEvent is posted pre mining and notifies of pending logs. -type PendingLogsEvent struct { - Logs []*types.Log -} - // NewMinedBlockEvent is posted when a block has been imported. type NewMinedBlockEvent struct{ Block *types.Block }