mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-09-14 04:59:02 +02:00
Merge pull request #3540
57d8e3f
[Qt] add missing lock in walletmodel (Cozz Lovan)
This commit is contained in:
@@ -488,6 +488,7 @@ bool WalletModel::getPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const
|
||||
// returns a list of COutputs from COutPoints
|
||||
void WalletModel::getOutputs(const std::vector<COutPoint>& vOutpoints, std::vector<COutput>& vOutputs)
|
||||
{
|
||||
LOCK(wallet->cs_wallet);
|
||||
BOOST_FOREACH(const COutPoint& outpoint, vOutpoints)
|
||||
{
|
||||
if (!wallet->mapWallet.count(outpoint.hash)) continue;
|
||||
|
Reference in New Issue
Block a user