Browse Source

add nModSize init to default constructor of CTxMemPoolEntry

pull/145/head
Philip Kaufmann 10 years ago
parent
commit
f4fe205034
  1. 2
      src/txmempool.cpp

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

Loading…
Cancel
Save