aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-09-16 15:19:42 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-09-16 15:21:24 +0200
commitcf04923618f552e660e7156200f6c84f0ed5b60d (patch)
tree29211f4e2eadf1463ca99cc4dd34b73f8a051165 /src
parent6fc1dc1a32b0f16ac6bdee323496ab1fd5d0b6c9 (diff)
parentf4fe20503433032e08cfa2133ce799a4c3d27d61 (diff)
downloadbitcoin-cf04923618f552e660e7156200f6c84f0ed5b60d.tar.xz
Merge pull request #4930
f4fe205 add nModSize init to default constructor of CTxMemPoolEntry (Philip Kaufmann)
Diffstat (limited to 'src')
-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;
}