diff options
author | Felix Lange <fjl@twurst.com> | 2016-12-05 02:07:24 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-12-05 17:57:11 +0800 |
commit | f52a1ae849492480b6505ab7805305640518a568 (patch) | |
tree | 95918d77278e15d7dfd52ad24a967d291f6cfdcb /core/events.go | |
parent | 3bc0fe1ee3183311efe851aca8fd10d5a5433929 (diff) | |
download | dexon-f52a1ae849492480b6505ab7805305640518a568.tar.gz dexon-f52a1ae849492480b6505ab7805305640518a568.tar.zst dexon-f52a1ae849492480b6505ab7805305640518a568.zip |
core, core/vm, eth/filters: move Removed field into vm.Log
This field used to be assigned by the filter system and returned through
the RPC API. Now that we have a Go client that uses the underlying type,
the field needs to move. It is now assigned to true when the RemovedLogs
event is generated so the filter system doesn't need to care about the
field at all.
While here, remove the log list from ChainSideEvent. There are no users
of this field right now and any potential users could subscribe to
RemovedLogsEvent instead.
Diffstat (limited to 'core/events.go')
-rw-r--r-- | core/events.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/events.go b/core/events.go index 322bcb769..414493fbf 100644 --- a/core/events.go +++ b/core/events.go @@ -61,7 +61,6 @@ type ChainEvent struct { type ChainSideEvent struct { Block *types.Block - Logs vm.Logs } type PendingBlockEvent struct { |