aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-02-27 00:48:39 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-02-29 17:24:58 +0800
commitb534106cc81f4df3d1facb46450c775e2eb617b0 (patch)
treeadcdb56904fc1b864b3d0fe37c7e20311b1aa60f /core
parent85865a51b63cdbeaabb76a3729f9b8361a2616d7 (diff)
downloadgo-tangerine-b534106cc81f4df3d1facb46450c775e2eb617b0.tar
go-tangerine-b534106cc81f4df3d1facb46450c775e2eb617b0.tar.gz
go-tangerine-b534106cc81f4df3d1facb46450c775e2eb617b0.tar.bz2
go-tangerine-b534106cc81f4df3d1facb46450c775e2eb617b0.tar.lz
go-tangerine-b534106cc81f4df3d1facb46450c775e2eb617b0.tar.xz
go-tangerine-b534106cc81f4df3d1facb46450c775e2eb617b0.tar.zst
go-tangerine-b534106cc81f4df3d1facb46450c775e2eb617b0.zip
core, miner: add PendingStateEvent to track non-log updates
Diffstat (limited to 'core')
-rw-r--r--core/events.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/events.go b/core/events.go
index c23206cad..bed8c7b90 100644
--- a/core/events.go
+++ b/core/events.go
@@ -35,6 +35,9 @@ type PendingLogsEvent struct {
Logs vm.Logs
}
+// 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 }