diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-06-26 18:27:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-26 18:27:39 +0800 |
commit | f321ed23fbaad8a13cc672f601b15f5272b4b2bb (patch) | |
tree | 7741031294f13481f99b084c6f2c484eb69ceced /core | |
parent | 413dc1d2651541dddb242716416a0427b0a656da (diff) | |
parent | beb708e6d76d83748c59dd92b2cb6d12194b7900 (diff) | |
download | go-tangerine-f321ed23fbaad8a13cc672f601b15f5272b4b2bb.tar.gz go-tangerine-f321ed23fbaad8a13cc672f601b15f5272b4b2bb.tar.zst go-tangerine-f321ed23fbaad8a13cc672f601b15f5272b4b2bb.zip |
Merge pull request #14687 from markya0616/unused_events
core: remove unused events
Diffstat (limited to 'core')
-rw-r--r-- | core/events.go | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/core/events.go b/core/events.go index bc7c9ddcb..6f404f612 100644 --- a/core/events.go +++ b/core/events.go @@ -24,9 +24,6 @@ import ( // TxPreEvent is posted when a transaction enters the transaction pool. type TxPreEvent struct{ Tx *types.Transaction } -// TxPostEvent is posted when a transaction has been processed. -type TxPostEvent struct{ Tx *types.Transaction } - // PendingLogsEvent is posted pre mining and notifies of pending logs. type PendingLogsEvent struct { Logs []*types.Log @@ -54,17 +51,4 @@ type ChainSideEvent struct { Block *types.Block } -type PendingBlockEvent struct { - Block *types.Block - Logs []*types.Log -} - -type ChainUncleEvent struct { - Block *types.Block -} - type ChainHeadEvent struct{ Block *types.Block } - -// Mining operation events -type StartMining struct{} -type TopMining struct{} |