Bitcoin ABC 0.30.5
P2P Digital Currency
load.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2018 The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef BITCOIN_WALLET_LOAD_H
7#define BITCOIN_WALLET_LOAD_H
8
9#include <string>
10#include <vector>
11
12class ArgsManager;
13class CScheduler;
14
15namespace interfaces {
16class Chain;
17} // namespace interfaces
18
22
25
27void StartWallets(CScheduler &scheduler, const ArgsManager &args);
28
30void FlushWallets();
31
33void StopWallets();
34
36void UnloadWallets();
37
38#endif // BITCOIN_WALLET_LOAD_H
Simple class for background tasks that should be run periodically or once "after a while".
Definition: scheduler.h:41
Interface giving clients (wallet processes, maybe other analysis tools in the future) ability to acce...
Definition: chain.h:123
void StartWallets(CScheduler &scheduler, const ArgsManager &args)
Complete startup of wallets.
Definition: load.cpp:149
bool VerifyWallets(interfaces::Chain &chain)
Responsible for reading and validating the -wallet arguments and verifying the wallet database.
Definition: load.cpp:23
void UnloadWallets()
Close all wallets.
Definition: load.cpp:183
void FlushWallets()
Flush all wallets in preparation for shutdown.
Definition: load.cpp:171
void StopWallets()
Stop all wallets. Wallets will be flushed first.
Definition: load.cpp:177
bool LoadWallets(interfaces::Chain &chain)
Load wallet databases.
Definition: load.cpp:107