Skip to content

Commit c95bbed

Browse files
MarcoFalkePastaPastaPasta
authored andcommitted
Merge bitcoin#19493: wallet: Fix clang build in Mac
1e58bcc wallet: Fix clang build in Mac (Anthony Fieroni) Pull request description: Signed-off-by: Anthony Fieroni <[email protected]> Top commit has no ACKs. Tree-SHA512: 19312929af14dab97c37cf4547fbd6589a6de960f1a499c2118bb684240639af4b127cf8dc4d201b41d253cfbb645614a0606d4ecce29f300b10c210d38a961b
1 parent 21e1a4a commit c95bbed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wallet/test/wallet_tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1381,13 +1381,13 @@ BOOST_FIXTURE_TEST_CASE(ZapSelectTx, TestChain100Setup)
13811381

13821382
LOCK(wallet->cs_wallet);
13831383
BOOST_CHECK(wallet->HasWalletSpend(prev_hash));
1384-
BOOST_CHECK_EQUAL(wallet->mapWallet.count(block_hash), 1);
1384+
BOOST_CHECK_EQUAL(wallet->mapWallet.count(block_hash), 1u);
13851385

13861386
std::vector<uint256> vHashIn{ block_hash }, vHashOut;
13871387
BOOST_CHECK_EQUAL(wallet->ZapSelectTx(vHashIn, vHashOut), DBErrors::LOAD_OK);
13881388

13891389
BOOST_CHECK(!wallet->HasWalletSpend(prev_hash));
1390-
BOOST_CHECK_EQUAL(wallet->mapWallet.count(block_hash), 0);
1390+
BOOST_CHECK_EQUAL(wallet->mapWallet.count(block_hash), 0u);
13911391
}
13921392

13931393
TestUnloadWallet(std::move(wallet));

0 commit comments

Comments
 (0)