| 152 | } |
| 153 | |
| 154 | void FlushWallets(WalletContext& context) |
| 155 | { |
| 156 | for (const std::shared_ptr<CWallet>& pwallet : GetWallets(context)) { |
| 157 | pwallet->Flush(); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | void StopWallets(WalletContext& context) |
| 162 | { |
no test coverage detected