Fix incorrect default value for argument of GetFilteredNotes.

This commit is contained in:
Simon 2016-09-07 23:36:40 -07:00
parent a101ef7979
commit 03812fefe4
1 changed files with 2 additions and 2 deletions

View File

@ -904,8 +904,8 @@ public:
/** Set whether this wallet broadcasts transactions. */
void SetBroadcastTransactions(bool broadcast) { fBroadcastTransactions = broadcast; }
/* Find unspent notes, filter by payment address, min depth */
bool GetFilteredNotes(std::vector<CNotePlaintextEntry> & outEntries, std::string address, size_t minDepth, bool ignoreSpent=false);
/* Find notes filtered by payment address, min depth, ability to spend */
bool GetFilteredNotes(std::vector<CNotePlaintextEntry> & outEntries, std::string address, size_t minDepth, bool ignoreSpent=true);
};