diff options
Diffstat (limited to 'src/bloom.h')
-rw-r--r-- | src/bloom.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bloom.h b/src/bloom.h index 335bb5e0bb..1a8a562dad 100644 --- a/src/bloom.h +++ b/src/bloom.h @@ -64,7 +64,8 @@ public: // (catch a filter which was just deserialized which was too big) bool IsWithinSizeConstraints() const; - bool IsTransactionRelevantToFilter(const CTransaction& tx, const uint256& hash) const; + // Also adds any outputs which match the filter to the filter (to match their spending txes) + bool IsRelevantAndUpdate(const CTransaction& tx, const uint256& hash); }; #endif /* BITCOIN_BLOOM_H */ |