Skip to content

Commit f321ed2

Browse files
authored
Merge pull request ethereum#14687 from markya0616/unused_events
core: remove unused events
2 parents 413dc1d + beb708e commit f321ed2

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

core/events.go

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ import (
2424
// TxPreEvent is posted when a transaction enters the transaction pool.
2525
type TxPreEvent struct{ Tx *types.Transaction }
2626

27-
// TxPostEvent is posted when a transaction has been processed.
28-
type TxPostEvent struct{ Tx *types.Transaction }
29-
3027
// PendingLogsEvent is posted pre mining and notifies of pending logs.
3128
type PendingLogsEvent struct {
3229
Logs []*types.Log
@@ -54,17 +51,4 @@ type ChainSideEvent struct {
5451
Block *types.Block
5552
}
5653

57-
type PendingBlockEvent struct {
58-
Block *types.Block
59-
Logs []*types.Log
60-
}
61-
62-
type ChainUncleEvent struct {
63-
Block *types.Block
64-
}
65-
6654
type ChainHeadEvent struct{ Block *types.Block }
67-
68-
// Mining operation events
69-
type StartMining struct{}
70-
type TopMining struct{}

0 commit comments

Comments
 (0)