fixed bug in ListReceived()

This commit is contained in:
JaSK 2014-06-22 23:29:33 +02:00
parent 519dd1c89a
commit f28707a845
1 changed files with 1 additions and 1 deletions

View File

@ -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];