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;
|
continue;
|
||||||
|
|
||||||
isminefilter mine = IsMine(*pwalletMain, address);
|
isminefilter mine = IsMine(*pwalletMain, address);
|
||||||
if(!mine & filter)
|
if(!(mine & filter))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
tallyitem& item = mapTally[address];
|
tallyitem& item = mapTally[address];
|
||||||
|
|
Loading…
Reference in a new issue