@@ -63,8 +63,8 @@ class CTxMemPoolEntry
63
63
size_t nModSize; // ! ... and modified size for priority
64
64
size_t nUsageSize; // ! ... and total memory usage
65
65
int64_t nTime; // ! Local time when entering the mempool
66
- double dPriority ; // ! Priority when entering the mempool
67
- unsigned int nHeight ; // ! Chain height when entering the mempool
66
+ double entryPriority ; // ! Priority when entering the mempool
67
+ unsigned int entryHeight ; // ! Chain height when entering the mempool
68
68
bool hadNoDependencies; // ! Not dependent on any other txs when it entered the mempool
69
69
70
70
// Information about descendants of this transaction that are in the
@@ -78,15 +78,15 @@ class CTxMemPoolEntry
78
78
79
79
public:
80
80
CTxMemPoolEntry (const CTransaction& _tx, const CAmount& _nFee,
81
- int64_t _nTime, double _dPriority , unsigned int _nHeight , bool poolHasNoInputsOf);
81
+ int64_t _nTime, double _entryPriority , unsigned int _entryHeight , bool poolHasNoInputsOf);
82
82
CTxMemPoolEntry (const CTxMemPoolEntry& other);
83
83
84
84
const CTransaction& GetTx () const { return this ->tx ; }
85
85
double GetPriority (unsigned int currentHeight) const ;
86
86
const CAmount& GetFee () const { return nFee; }
87
87
size_t GetTxSize () const { return nTxSize; }
88
88
int64_t GetTime () const { return nTime; }
89
- unsigned int GetHeight () const { return nHeight ; }
89
+ unsigned int GetHeight () const { return entryHeight ; }
90
90
bool WasClearAtEntry () const { return hadNoDependencies; }
91
91
size_t DynamicMemoryUsage () const { return nUsageSize; }
92
92
0 commit comments