aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rpcwallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index f745d25ab6..560be0570a 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -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];