Browse Source

Merge pull request #4930

f4fe205 add nModSize init to default constructor of CTxMemPoolEntry (Philip Kaufmann)
metaverse
Wladimir J. van der Laan 10 years ago
parent
commit
cf04923618
No known key found for this signature in database GPG Key ID: 74810B012346C9A6
  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