diff options
| author | Philip Kaufmann <[email protected]> | 2014-09-16 10:28:53 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-09-16 15:07:45 +0200 |
| commit | f4fe20503433032e08cfa2133ce799a4c3d27d61 (patch) | |
| tree | cf6709785dcac2027abcf910c55f3a0720c59a37 /src/txmempool.cpp | |
| parent | Merge pull request #4825 (diff) | |
| download | discoin-f4fe20503433032e08cfa2133ce799a4c3d27d61.tar.xz discoin-f4fe20503433032e08cfa2133ce799a4c3d27d61.zip | |
add nModSize init to default constructor of CTxMemPoolEntry
Diffstat (limited to 'src/txmempool.cpp')
| -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 404cca237..52d07bf6a 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; } |