aboutsummaryrefslogtreecommitdiffstats
path: root/core/events.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-12-05 02:07:24 +0800
committerFelix Lange <fjl@twurst.com>2016-12-05 17:57:11 +0800
commitf52a1ae849492480b6505ab7805305640518a568 (patch)
tree95918d77278e15d7dfd52ad24a967d291f6cfdcb /core/events.go
parent3bc0fe1ee3183311efe851aca8fd10d5a5433929 (diff)
downloadgo-tangerine-f52a1ae849492480b6505ab7805305640518a568.tar
go-tangerine-f52a1ae849492480b6505ab7805305640518a568.tar.gz
go-tangerine-f52a1ae849492480b6505ab7805305640518a568.tar.bz2
go-tangerine-f52a1ae849492480b6505ab7805305640518a568.tar.lz
go-tangerine-f52a1ae849492480b6505ab7805305640518a568.tar.xz
go-tangerine-f52a1ae849492480b6505ab7805305640518a568.tar.zst
go-tangerine-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.go1
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 {