aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authormark.lin <mark@maicoin.com>2017-06-23 10:39:38 +0800
committermark.lin <mark@maicoin.com>2017-06-23 10:39:38 +0800
commitbeb708e6d76d83748c59dd92b2cb6d12194b7900 (patch)
treed0f95d3641c1403b3b0b9d41c367da681d5c811a /core
parent431cf2a1e453346bcc627ac1fb9df3950a6c3499 (diff)
downloadgo-tangerine-beb708e6d76d83748c59dd92b2cb6d12194b7900.tar
go-tangerine-beb708e6d76d83748c59dd92b2cb6d12194b7900.tar.gz
go-tangerine-beb708e6d76d83748c59dd92b2cb6d12194b7900.tar.bz2
go-tangerine-beb708e6d76d83748c59dd92b2cb6d12194b7900.tar.lz
go-tangerine-beb708e6d76d83748c59dd92b2cb6d12194b7900.tar.xz
go-tangerine-beb708e6d76d83748c59dd92b2cb6d12194b7900.tar.zst
go-tangerine-beb708e6d76d83748c59dd92b2cb6d12194b7900.zip
core: remove unused events
Diffstat (limited to 'core')
-rw-r--r--core/events.go16
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{}