diff --git a/core/filter.go b/core/filter.go index dd15db27d0cca79f93f36c31772375426350d369..4508b35b30e14005e5246049619bdefa89753211 100644 --- a/core/filter.go +++ b/core/filter.go @@ -153,7 +153,7 @@ func (self *Filter) bloomFilter(block *types.Block) bool { if len(self.address) > 0 { var included bool for _, addr := range self.address { - if types.BloomLookup(block.Bloom(), addr.Hash()) { + if types.BloomLookup(block.Bloom(), addr) { included = true break }