Merge pull request #4930

f4fe205 add nModSize init to default constructor of CTxMemPoolEntry (Philip Kaufmann)
This commit is contained in:
Wladimir J. van der Laan 2014-09-16 15:19:42 +02:00
commit cf04923618
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 1 additions and 1 deletions

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