Skip to content

Commit 90e638a

Browse files
committed
fixup
1 parent 73a997a commit 90e638a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/bench/wallet_balance.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ static void WalletBalance(benchmark::Bench& bench, const bool set_dirty, const b
2222
{
2323
LOCK(wallet.cs_wallet);
2424
wallet.SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
25-
wallet.SetupDescriptorScriptPubKeyMans();
25+
wallet.SetupDescriptorScriptPubKeyMans("", "");
2626
if (wallet.LoadWallet() != DBErrors::LOAD_OK) assert(false);
2727
}
2828
auto handler = test_setup->m_node.chain->handleNotifications({&wallet, [](CWallet*) {}});

src/qt/test/addressbooktests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void TestAddAddressesToSendBook(interfaces::Node& node)
6969
wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
7070
{
7171
LOCK(wallet->cs_wallet);
72-
wallet->SetupDescriptorScriptPubKeyMans();
72+
wallet->SetupDescriptorScriptPubKeyMans("", "");
7373
}
7474

7575
auto build_address = [wallet]() {

src/qt/test/wallettests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ void TestGUI(interfaces::Node& node)
116116
wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
117117
{
118118
LOCK(wallet->cs_wallet);
119-
wallet->SetupDescriptorScriptPubKeyMans();
119+
wallet->SetupDescriptorScriptPubKeyMans("", "");
120120

121121
// Add the coinbase key
122122
FlatSigningProvider provider;

src/wallet/test/coinselector_tests.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ BOOST_AUTO_TEST_CASE(bnb_search_test)
283283
wallet->LoadWallet();
284284
LOCK(wallet->cs_wallet);
285285
wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
286-
wallet->SetupDescriptorScriptPubKeyMans();
286+
wallet->SetupDescriptorScriptPubKeyMans("", "");
287287

288288
std::vector<COutput> coins;
289289
CoinSet setCoinsRet;
@@ -307,7 +307,7 @@ BOOST_AUTO_TEST_CASE(bnb_search_test)
307307
wallet->LoadWallet();
308308
LOCK(wallet->cs_wallet);
309309
wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
310-
wallet->SetupDescriptorScriptPubKeyMans();
310+
wallet->SetupDescriptorScriptPubKeyMans("", "");
311311

312312
std::vector<COutput> coins;
313313
CoinSet setCoinsRet;
@@ -330,7 +330,7 @@ BOOST_AUTO_TEST_CASE(knapsack_solver_test)
330330
wallet->LoadWallet();
331331
LOCK(wallet->cs_wallet);
332332
wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
333-
wallet->SetupDescriptorScriptPubKeyMans();
333+
wallet->SetupDescriptorScriptPubKeyMans("", "");
334334

335335
CoinSet setCoinsRet, setCoinsRet2;
336336
CAmount nValueRet;
@@ -611,7 +611,7 @@ BOOST_AUTO_TEST_CASE(ApproximateBestSubset)
611611
wallet->LoadWallet();
612612
LOCK(wallet->cs_wallet);
613613
wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
614-
wallet->SetupDescriptorScriptPubKeyMans();
614+
wallet->SetupDescriptorScriptPubKeyMans("", "");
615615

616616
CoinSet setCoinsRet;
617617
CAmount nValueRet;
@@ -634,7 +634,7 @@ BOOST_AUTO_TEST_CASE(SelectCoins_test)
634634
wallet->LoadWallet();
635635
LOCK(wallet->cs_wallet);
636636
wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
637-
wallet->SetupDescriptorScriptPubKeyMans();
637+
wallet->SetupDescriptorScriptPubKeyMans("", "");
638638

639639
// Random generator stuff
640640
std::default_random_engine generator;

src/wallet/test/wallet_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ BOOST_FIXTURE_TEST_CASE(coin_mark_dirty_immature_credit, TestChain100Setup)
353353

354354
LOCK(wallet.cs_wallet);
355355
wallet.SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
356-
wallet.SetupDescriptorScriptPubKeyMans();
356+
wallet.SetupDescriptorScriptPubKeyMans("", "");
357357

358358
wallet.SetLastBlockProcessed(m_node.chainman->ActiveChain().Height(), m_node.chainman->ActiveChain().Tip()->GetBlockHash());
359359

0 commit comments

Comments
 (0)