|
|
@ -340,7 +340,6 @@ void Client::appendFromNewPending(TransactionReceipt const& _receipt, h256Hash& |
|
|
|
{ |
|
|
|
Guard l(x_filtersWatches); |
|
|
|
for (pair<h256 const, InstalledFilter>& i: m_filters) |
|
|
|
if (isInBlockHashRange(i.second.filter.earliest(), i.second.filter.latest(), PendingBlockHash)) |
|
|
|
{ |
|
|
|
// acceptable number.
|
|
|
|
auto m = i.second.filter.matches(_receipt); |
|
|
@ -362,7 +361,6 @@ void Client::appendFromNewBlock(h256 const& _block, h256Hash& io_changed) |
|
|
|
|
|
|
|
Guard l(x_filtersWatches); |
|
|
|
for (pair<h256 const, InstalledFilter>& i: m_filters) |
|
|
|
if (isInBlockHashRange(i.second.filter.earliest(), i.second.filter.latest(), d.hash()) && i.second.filter.matches(d.logBloom)) |
|
|
|
// acceptable number & looks like block may contain a matching log entry.
|
|
|
|
for (size_t j = 0; j < br.receipts.size(); j++) |
|
|
|
{ |
|
|
|