add nModSize init to default constructor of CTxMemPoolEntry

This commit is contained in:
Philip Kaufmann 2014-09-16 10:28:53 +02:00
parent dc54e9db98
commit f4fe205034

View file

@ -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;
}