diff options
| author | Alex Morcos <[email protected]> | 2016-11-11 12:48:01 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-01-04 12:09:33 -0500 |
| commit | 6f06b268c1f383affb2cf397f325d48d25bc8880 (patch) | |
| tree | 0e46808e549fad7a3c5e8958f613b52ca60ee5ee /src/txmempool.h | |
| parent | Remove member variable hadNoDependencies from CTxMemPoolEntry (diff) | |
| download | discoin-6f06b268c1f383affb2cf397f325d48d25bc8880.tar.xz discoin-6f06b268c1f383affb2cf397f325d48d25bc8880.zip | |
rename bool to validFeeEstimate
Diffstat (limited to 'src/txmempool.h')
| -rw-r--r-- | src/txmempool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 5c8cf7af1..16125bd73 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -523,8 +523,8 @@ public: // to track size/count of descendant transactions. First version of // addUnchecked can be used to have it call CalculateMemPoolAncestors(), and // then invoke the second version. - bool addUnchecked(const uint256& hash, const CTxMemPoolEntry &entry, bool fCurrentEstimate = true); - bool addUnchecked(const uint256& hash, const CTxMemPoolEntry &entry, setEntries &setAncestors, bool fCurrentEstimate = true); + bool addUnchecked(const uint256& hash, const CTxMemPoolEntry &entry, bool validFeeEstimate = true); + bool addUnchecked(const uint256& hash, const CTxMemPoolEntry &entry, setEntries &setAncestors, bool validFeeEstimate = true); void removeRecursive(const CTransaction &tx); void removeForReorg(const CCoinsViewCache *pcoins, unsigned int nMemPoolHeight, int flags); |