From 258a7b9a936b206ee61d04a04cbb930d4d479e0d Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 7 May 2015 17:20:57 +0200 Subject: [PATCH] xeth: check proper queue for pending transaction filter --- xeth/xeth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xeth/xeth.go b/xeth/xeth.go index a0b936b57..90f709aea 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -504,7 +504,7 @@ func (self *XEth) TransactionFilterChanged(id int) []common.Hash { self.blockMu.Lock() defer self.blockMu.Unlock() - if self.blockQueue[id] != nil { + if self.transactionQueue[id] != nil { return self.transactionQueue[id].get() } return nil