diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-20 23:59:08 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-20 23:59:08 +0800 |
commit | 66d5559866f37a79a7b5aeccd03dfe1b4401542b (patch) | |
tree | 0d18a39d40dd1b88ce770e803b00b0d117ceaa00 | |
parent | 82cae277372095eb221bc14b2111e46c468925fd (diff) | |
download | dexon-66d5559866f37a79a7b5aeccd03dfe1b4401542b.tar.gz dexon-66d5559866f37a79a7b5aeccd03dfe1b4401542b.tar.zst dexon-66d5559866f37a79a7b5aeccd03dfe1b4401542b.zip |
Fixed chain event issue
-rw-r--r-- | core/chain_manager.go | 4 | ||||
-rw-r--r-- | rpc/packages.go | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/core/chain_manager.go b/core/chain_manager.go index 47cad825d..600dc3db5 100644 --- a/core/chain_manager.go +++ b/core/chain_manager.go @@ -396,9 +396,7 @@ func (self *ChainManager) InsertChain(chain types.Blocks) error { self.mu.Unlock() if chain { - fmt.Println("POST START") - self.eventMux.Post(ChainEvent{block, td}) - fmt.Println("POST END") + go self.eventMux.Post(ChainEvent{block, td}) } if split { diff --git a/rpc/packages.go b/rpc/packages.go index 56c1751d7..72e090130 100644 --- a/rpc/packages.go +++ b/rpc/packages.go @@ -101,13 +101,11 @@ func (self *EthereumApi) NewFilter(args *FilterOptions, reply *interface{}) erro self.logMut.Lock() defer self.logMut.Unlock() - if self.logs[id] == nil { - self.logs[id] = &logFilter{timeout: time.Now()} - } - self.logs[id].add(logs...) } id = self.filterManager.InstallFilter(filter) + self.logs[id] = &logFilter{timeout: time.Now()} + *reply = id return nil |