aboutsummaryrefslogtreecommitdiff
path: root/src/rpcwallet.cpp
diff options
context:
space:
mode:
authorJaSK <[email protected]>2014-06-22 23:29:33 +0200
committerJaSK <[email protected]>2014-07-02 15:48:40 +0200
commitf28707a845d4098fed55a6948887d60043fcfde7 (patch)
treec39604420c1ce4231784186d7909bd06a197b262 /src/rpcwallet.cpp
parentAdded MINE_ALL = (spendable|watchonly) (diff)
downloaddiscoin-f28707a845d4098fed55a6948887d60043fcfde7.tar.xz
discoin-f28707a845d4098fed55a6948887d60043fcfde7.zip
fixed bug in ListReceived()
Diffstat (limited to 'src/rpcwallet.cpp')
-rw-r--r--src/rpcwallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index f745d25ab..560be0570 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];