diff options
| author | Pieter Wuille <[email protected]> | 2014-06-09 10:02:00 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-06-22 00:06:17 +0200 |
| commit | d38da59bf68fbb37535e2579bfb7355a16baed0e (patch) | |
| tree | fb9821f60f32fa8ea0564d1149fa37ab396ead97 /src/bloom.h | |
| parent | Add CMutableTransaction and make CTransaction immutable. (diff) | |
| download | discoin-d38da59bf68fbb37535e2579bfb7355a16baed0e.tar.xz discoin-d38da59bf68fbb37535e2579bfb7355a16baed0e.zip | |
Code simplifications after CTransaction::GetHash() caching
Diffstat (limited to 'src/bloom.h')
| -rw-r--r-- | src/bloom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bloom.h b/src/bloom.h index 75e3f38c5..956bead87 100644 --- a/src/bloom.h +++ b/src/bloom.h @@ -83,7 +83,7 @@ public: bool IsWithinSizeConstraints() 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); + bool IsRelevantAndUpdate(const CTransaction& tx); // Checks for empty and full filters to avoid wasting cpu void UpdateEmptyFull(); |