mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-18 13:17:55 +02:00
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…
Add table
Add a link
Reference in a new issue