Remove default arguments for CTxMemPoolEntry()

This commit is contained in:
Alex Morcos 2015-11-17 16:00:19 -05:00
parent 96b802510d
commit 5945819717
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ private:
public:
CTxMemPoolEntry(const CTransaction& _tx, const CAmount& _nFee,
int64_t _nTime, double _dPriority, unsigned int _nHeight, bool poolHasNoInputsOf = false);
int64_t _nTime, double _dPriority, unsigned int _nHeight, bool poolHasNoInputsOf);
CTxMemPoolEntry(const CTxMemPoolEntry& other);
const CTransaction& GetTx() const { return this->tx; }