mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
4a3e3af6e7
fa0074e2d82928016a43ca408717154a1c70a4db scripted-diff: Bump copyright headers (MarcoFalke) Pull request description: Needs to be done because no one has removed the years yet ACKs for top commit: practicalswift: ACK fa0074e2d82928016a43ca408717154a1c70a4db Tree-SHA512: 210e92acd7d400b556cf8259c3ec9967797420cfd19f0c2a4fa54cb2b3d32ad9ae27e771269201e7d554c0f4cd73a8b1c1a42c9f65d8685ca4d52e5134b071a3
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_WALLET_LOAD_H
|
|
#define BITCOIN_WALLET_LOAD_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class ArgsManager;
|
|
class CConnman;
|
|
class CScheduler;
|
|
|
|
namespace interfaces {
|
|
class Chain;
|
|
namespace CoinJoin {
|
|
class Loader;
|
|
} // namespace CoinJoin
|
|
} // namespace interfaces
|
|
|
|
//! Responsible for reading and validating the -wallet arguments and verifying the wallet database.
|
|
bool VerifyWallets(interfaces::Chain& chain);
|
|
|
|
//! Load wallet databases.
|
|
bool LoadWallets(interfaces::Chain& chain, interfaces::CoinJoin::Loader& coinjoin_loader);
|
|
|
|
//! Complete startup of wallets.
|
|
void StartWallets(CScheduler& scheduler, const ArgsManager& args);
|
|
|
|
//! Flush all wallets in preparation for shutdown.
|
|
void FlushWallets();
|
|
|
|
//! Stop all wallets. Wallets will be flushed first.
|
|
void StopWallets();
|
|
|
|
//! Close all wallets.
|
|
void UnloadWallets();
|
|
|
|
#endif // BITCOIN_WALLET_LOAD_H
|