aboutsummaryrefslogtreecommitdiffstats
path: root/chain/events.go
diff options
context:
space:
mode:
Diffstat (limited to 'chain/events.go')
-rw-r--r--chain/events.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/chain/events.go b/chain/events.go
deleted file mode 100644
index 06ab6be79..000000000
--- a/chain/events.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package chain
-
-import "github.com/ethereum/go-ethereum/chain/types"
-
-// 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 }
-
-// NewBlockEvent is posted when a block has been imported.
-type NewBlockEvent struct{ Block *types.Block }