aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2014-09-16 10:28:53 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2014-09-16 15:07:45 +0200
commitf4fe20503433032e08cfa2133ce799a4c3d27d61 (patch)
treecf6709785dcac2027abcf910c55f3a0720c59a37 /src/txmempool.cpp
parentdc54e9db982118ec71cc11b8d027e5a569810cba (diff)
downloadbitcoin-f4fe20503433032e08cfa2133ce799a4c3d27d61.tar.xz
add nModSize init to default constructor of CTxMemPoolEntry
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r--src/txmempool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp
index 404cca2373..52d07bf6a0 100644
--- a/src/txmempool.cpp
+++ b/src/txmempool.cpp
@@ -13,7 +13,7 @@
using namespace std;
CTxMemPoolEntry::CTxMemPoolEntry():
- nFee(0), nTxSize(0), nTime(0), dPriority(0.0)
+ nFee(0), nTxSize(0), nModSize(0), nTime(0), dPriority(0.0)
{
nHeight = MEMPOOL_HEIGHT;
}