mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
add nModSize init to default constructor of CTxMemPoolEntry
This commit is contained in:
parent
dc54e9db98
commit
f4fe205034
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
CTxMemPoolEntry::CTxMemPoolEntry():
|
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;
|
nHeight = MEMPOOL_HEIGHT;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue