MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / StartWallets

Function StartWallets

src/wallet/load.cpp:167–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

165}
166
167void StartWallets(WalletContext& context)
168{
169 for (const std::shared_ptr<CWallet>& pwallet : GetWallets(context)) {
170 pwallet->postInitProcess();
171 }
172
173 context.scheduler->scheduleEvery([&context] { MaybeResendWalletTxs(context); }, 1min);
174}
175
176void UnloadWallets(WalletContext& context)
177{

Callers 1

startMethod · 0.85

Calls 4

GetWalletsFunction · 0.85
MaybeResendWalletTxsFunction · 0.85
postInitProcessMethod · 0.80
scheduleEveryMethod · 0.80

Tested by

no test coverage detected