0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

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