aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-08-26 21:48:03 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-10-09 11:58:32 +0200
commitdee42927c95549633e8d722be4f64b9d55cd3966 (patch)
tree590b0f4e90190b61386bd0a1e7cc4eb72ef65c75 /src/interfaces
parent1c7e25db0c898abc9968ab487b254454b709e628 (diff)
downloadbitcoin-dee42927c95549633e8d722be4f64b9d55cd3966.tar.xz
wallet: Add Clang thread safety analysis annotations
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/wallet.cpp b/src/interfaces/wallet.cpp
index 566ae37509..84079fdc3c 100644
--- a/src/interfaces/wallet.cpp
+++ b/src/interfaces/wallet.cpp
@@ -103,7 +103,7 @@ static WalletTxStatus MakeWalletTxStatus(const CWalletTx& wtx) EXCLUSIVE_LOCKS_R
}
//! Construct wallet TxOut struct.
-static WalletTxOut MakeWalletTxOut(CWallet& wallet, const CWalletTx& wtx, int n, int depth) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
+static WalletTxOut MakeWalletTxOut(CWallet& wallet, const CWalletTx& wtx, int n, int depth) EXCLUSIVE_LOCKS_REQUIRED(cs_main, wallet.cs_wallet)
{
WalletTxOut result;
result.txout = wtx.tx->vout[n];