| 165 | } |
| 166 | |
| 167 | void 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 | |
| 176 | void UnloadWallets(WalletContext& context) |
| 177 | { |
no test coverage detected