Bitcoin ABC  0.29.2
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 
12 class ArgsManager;
13 class CScheduler;
14 
15 namespace interfaces {
16 class Chain;
17 } // namespace interfaces
18 
21 bool VerifyWallets(interfaces::Chain &chain);
22 
24 bool LoadWallets(interfaces::Chain &chain);
25 
27 void StartWallets(CScheduler &scheduler, const ArgsManager &args);
28 
30 void FlushWallets();
31 
33 void StopWallets();
34 
36 void 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:148
bool VerifyWallets(interfaces::Chain &chain)
Responsible for reading and validating the -wallet arguments and verifying the wallet database.
Definition: load.cpp:22
void UnloadWallets()
Close all wallets.
Definition: load.cpp:182
void FlushWallets()
Flush all wallets in preparation for shutdown.
Definition: load.cpp:170
void StopWallets()
Stop all wallets. Wallets will be flushed first.
Definition: load.cpp:176
bool LoadWallets(interfaces::Chain &chain)
Load wallet databases.
Definition: load.cpp:106