Showing 'involvesWatchonly' property for transactions returned by 'listtransactions' and 'listsinceblock'.

It is only appended when the transaction involves a watchonly address.
This commit is contained in:
JaSK
2014-04-09 17:20:07 +02:00
parent 83f3543f20
commit 952877e01c
2 changed files with 7 additions and 2 deletions

View File

@@ -761,9 +761,9 @@ public:
void GetAccountAmounts(const std::string& strAccount, int64_t& nReceived,
int64_t& nSent, int64_t& nFee, const isminefilter& filter=(MINE_SPENDABLE|MINE_WATCH_ONLY)) const;
bool IsFromMe() const
bool IsFromMe(const isminefilter& filter=(MINE_SPENDABLE|MINE_WATCH_ONLY)) const
{
return (GetDebit() > 0);
return (GetDebit(filter) > 0);
}
bool IsTrusted() const