aboutsummaryrefslogtreecommitdiffstats
path: root/core/blockchain.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2016-02-13 08:40:44 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2016-02-13 20:14:02 +0800
commit987c1a595a6a318ac83b68e3b87812497070bf9b (patch)
tree30859d085d7533c7ad610eed8a186f88724eadfe /core/blockchain.go
parentb05e472c076d30035233d6a8b5fb3360b236e3ff (diff)
downloaddexon-987c1a595a6a318ac83b68e3b87812497070bf9b.tar
dexon-987c1a595a6a318ac83b68e3b87812497070bf9b.tar.gz
dexon-987c1a595a6a318ac83b68e3b87812497070bf9b.tar.bz2
dexon-987c1a595a6a318ac83b68e3b87812497070bf9b.tar.lz
dexon-987c1a595a6a318ac83b68e3b87812497070bf9b.tar.xz
dexon-987c1a595a6a318ac83b68e3b87812497070bf9b.tar.zst
dexon-987c1a595a6a318ac83b68e3b87812497070bf9b.zip
eth/filters: ✨ pending logs ✨
Pending logs are now filterable through the Go API. Filter API changed such that each filter type has it's own bucket and adding filter explicitly requires you specify the bucket to put it in.
Diffstat (limited to 'core/blockchain.go')
-rw-r--r--core/blockchain.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index 95ed06d8d..22dd617ad 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -1358,7 +1358,7 @@ func (self *BlockChain) reorg(oldBlock, newBlock *types.Block) error {
go self.eventMux.Post(RemovedTransactionEvent{diff})
}
if len(deletedLogs) > 0 {
- go self.eventMux.Post(RemovedLogEvent{deletedLogs})
+ go self.eventMux.Post(RemovedLogsEvent{deletedLogs})
}
return nil