aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2015-10-28 03:07:59 +0100
committerPieter Wuille <pieter.wuille@gmail.com>2015-10-28 03:07:59 +0100
commite9e616323bc44daf61f4358f5b2de58e90b5c602 (patch)
tree767da987b19111036f305867500b0d22d3e4d442 /src/txmempool.h
parent8daffe227bc67706d6640b67776f7711a6a98607 (diff)
downloadbitcoin-e9e616323bc44daf61f4358f5b2de58e90b5c602.tar.xz
Make -checkmempool=1 not fail through int32 overflow
Diffstat (limited to 'src/txmempool.h')
-rw-r--r--src/txmempool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h
index 6aa5f6d77c..7b5843a8d0 100644
--- a/src/txmempool.h
+++ b/src/txmempool.h
@@ -360,7 +360,7 @@ public:
* check does nothing.
*/
void check(const CCoinsViewCache *pcoins) const;
- void setSanityCheck(double dFrequency = 1.0) { nCheckFrequency = dFrequency * 4294967296.0; }
+ void setSanityCheck(double dFrequency = 1.0) { nCheckFrequency = dFrequency * 4294967295.0; }
// addUnchecked must updated state for all ancestors of a given transaction,
// to track size/count of descendant transactions. First version of