mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-18 22:35:39 +01:00
Fixed error in 'getbalance' when using watchonly addresses.
This commit is contained in:
@@ -845,7 +845,7 @@ void CWalletTx::GetAmounts(list<pair<CTxDestination, int64_t> >& listReceived,
|
||||
listSent.push_back(make_pair(address, txout.nValue));
|
||||
|
||||
// If we are receiving the output, add it as a "received" entry
|
||||
if (fIsMine)
|
||||
if (fIsMine & filter)
|
||||
listReceived.push_back(make_pair(address, txout.nValue));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user