diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-11-24 21:23:01 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-11-24 21:23:01 +0800 |
commit | 529c50287650f8e70da21f223e47fa40a4ddb112 (patch) | |
tree | 6460af83118c09795945af0c1220d2fbc3ef410d /core | |
parent | c04c8f10f04a41e762589358418c65fd99891bb4 (diff) | |
download | dexon-529c50287650f8e70da21f223e47fa40a4ddb112.tar.gz dexon-529c50287650f8e70da21f223e47fa40a4ddb112.tar.zst dexon-529c50287650f8e70da21f223e47fa40a4ddb112.zip |
core: remove dead event
Diffstat (limited to 'core')
-rw-r--r-- | core/events.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/events.go b/core/events.go index bed8c7b90..322bcb769 100644 --- a/core/events.go +++ b/core/events.go @@ -38,9 +38,6 @@ type PendingLogsEvent struct { // PendingStateEvent is posted pre mining and notifies of pending state changes. type PendingStateEvent struct{} -// NewBlockEvent is posted when a block has been imported. -type NewBlockEvent struct{ Block *types.Block } - // NewMinedBlockEvent is posted when a block has been imported. type NewMinedBlockEvent struct{ Block *types.Block } |