From e81197606ae29c4be3ac37ad4e8aaf699fbcd039 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 18 Nov 2014 13:21:36 +0100 Subject: [PATCH] Log & watches. --- libethereum/Client.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libethereum/Client.cpp b/libethereum/Client.cpp index 6405134c7..183a072e3 100644 --- a/libethereum/Client.cpp +++ b/libethereum/Client.cpp @@ -224,6 +224,7 @@ void Client::noteChanged(h256Set const& _filters) void Client::appendFromNewPending(LogBloom _bloom, h256Set& o_changed) const { + // TODO: more precise check on whether the txs match. lock_guard l(m_filterLock); for (pair const& i: m_filters) if ((unsigned)i.second.filter.latest() > m_bc.number() && i.second.filter.matches(_bloom)) @@ -232,6 +233,7 @@ void Client::appendFromNewPending(LogBloom _bloom, h256Set& o_changed) const void Client::appendFromNewBlock(h256 _block, h256Set& o_changed) const { + // TODO: more precise check on whether the txs match. auto d = m_bc.info(_block); lock_guard l(m_filterLock);