Browse Source

fixed bug in ListReceived()

0.10
JaSK 10 years ago
parent
commit
f28707a845
  1. 2
      src/rpcwallet.cpp

2
src/rpcwallet.cpp

@ -978,7 +978,7 @@ Value ListReceived(const Array& params, bool fByAccounts) @@ -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…
Cancel
Save