Browse Source

Remove default arguments for CTxMemPoolEntry()

0.13
Alex Morcos 9 years ago
parent
commit
5945819717
  1. 2
      src/txmempool.h

2
src/txmempool.h

@ -78,7 +78,7 @@ private: @@ -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; }

Loading…
Cancel
Save