diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-09-16 10:28:53 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-09-16 15:07:45 +0200 |
commit | f4fe20503433032e08cfa2133ce799a4c3d27d61 (patch) | |
tree | cf6709785dcac2027abcf910c55f3a0720c59a37 /src | |
parent | dc54e9db982118ec71cc11b8d027e5a569810cba (diff) |
add nModSize init to default constructor of CTxMemPoolEntry
Diffstat (limited to 'src')
-rw-r--r-- | src/txmempool.cpp | 2 |
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; } |