aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-05-16 11:45:32 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2019-05-17 13:29:04 +0200
commit3a809446b3881e1a6853da78cccf42643c9a5927 (patch)
treecc16f18732842158c75e549b986b5ca10984c86e /src
parentcc2588579c3fbc133a7ca762fa213ca18b736551 (diff)
downloadbitcoin-3a809446b3881e1a6853da78cccf42643c9a5927.tar.xz
Move LockAnnotation to make it reflect the truth
Diffstat (limited to 'src')
-rw-r--r--src/wallet/test/wallet_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/test/wallet_tests.cpp b/src/wallet/test/wallet_tests.cpp
index 62630c011a..b230000a91 100644
--- a/src/wallet/test/wallet_tests.cpp
+++ b/src/wallet/test/wallet_tests.cpp
@@ -272,8 +272,8 @@ static int64_t AddTx(CWallet& wallet, uint32_t lockTime, int64_t mockTime, int64
SetMockTime(mockTime);
CBlockIndex* block = nullptr;
if (blockTime > 0) {
- LockAnnotation lock(::cs_main);
auto locked_chain = wallet.chain().lock();
+ LockAnnotation lock(::cs_main);
auto inserted = mapBlockIndex.emplace(GetRandHash(), new CBlockIndex);
assert(inserted.second);
const uint256& hash = inserted.first->first;