diff options
| author | Alex Morcos <[email protected]> | 2015-11-17 16:00:19 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2015-11-19 21:28:01 -0500 |
| commit | 5945819717eb842df28cd9291a226d0505cb49d0 (patch) | |
| tree | 674dc0b1b890b91843b57c2bf5676ccd7bfcf8e5 /src | |
| parent | Merge pull request #7112 (diff) | |
| download | discoin-5945819717eb842df28cd9291a226d0505cb49d0.tar.xz discoin-5945819717eb842df28cd9291a226d0505cb49d0.zip | |
Remove default arguments for CTxMemPoolEntry()
Diffstat (limited to 'src')
| -rw-r--r-- | src/txmempool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 7f43120f7..e1ecad360 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -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; } |