Skip to content

Commit 5945819

Browse files
committed
Remove default arguments for CTxMemPoolEntry()
1 parent 96b8025 commit 5945819

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/txmempool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class CTxMemPoolEntry
7878

7979
public:
8080
CTxMemPoolEntry(const CTransaction& _tx, const CAmount& _nFee,
81-
int64_t _nTime, double _dPriority, unsigned int _nHeight, bool poolHasNoInputsOf = false);
81+
int64_t _nTime, double _dPriority, unsigned int _nHeight, bool poolHasNoInputsOf);
8282
CTxMemPoolEntry(const CTxMemPoolEntry& other);
8383

8484
const CTransaction& GetTx() const { return this->tx; }

0 commit comments

Comments
 (0)