fixed bug in ListReceived()
This commit is contained in:
parent
519dd1c89a
commit
f28707a845
1 changed files with 1 additions and 1 deletions
|
@ -978,7 +978,7 @@ Value ListReceived(const Array& params, bool fByAccounts)
|
|||
continue;
|
||||
|
||||
isminefilter mine = IsMine(*pwalletMain, address);
|
||||
if(!mine & filter)
|
||||
if(!(mine & filter))
|
||||
continue;
|
||||
|
||||
tallyitem& item = mapTally[address];
|
||||
|
|
Loading…
Reference in a new issue