Skip to content

Commit

Permalink
fixed bug in ListReceived()
Browse files Browse the repository at this point in the history
Rebased-from: f28707a bitcoin#4045
  • Loading branch information
sdkfjlsfjlskdfjlsdjflsjf authored and wtogami committed Dec 23, 2014
1 parent 7a52fcc commit 7a43c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpcwallet.cpp
Expand Up @@ -973,7 +973,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];
Expand Down

0 comments on commit 7a43c5b

Please sign in to comment.