2010-07-14 17:54:31 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
2014-12-01 02:39:44 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2011-05-15 09:11:04 +02:00
|
|
|
#ifndef BITCOIN_INIT_H
|
|
|
|
#define BITCOIN_INIT_H
|
2010-07-14 17:54:31 +02:00
|
|
|
|
2013-10-19 18:42:14 +02:00
|
|
|
#include <string>
|
|
|
|
|
2015-04-03 17:50:06 +02:00
|
|
|
class CScheduler;
|
2013-10-19 18:42:14 +02:00
|
|
|
class CWallet;
|
2012-04-15 22:10:54 +02:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
namespace boost
|
|
|
|
{
|
|
|
|
class thread_group;
|
2014-06-24 14:17:43 +02:00
|
|
|
} // namespace boost
|
2013-04-13 07:13:08 +02:00
|
|
|
|
CWallet class
* A new class CKeyStore manages private keys, and script.cpp depends on access to CKeyStore.
* A new class CWallet extends CKeyStore, and contains all former wallet-specific globals; CWallet depends on script.cpp, not the other way around.
* Wallet-specific functions in CTransaction/CTxIn/CTxOut (GetDebit, GetCredit, GetChange, IsMine, IsFromMe), are moved to CWallet, taking their former 'this' argument as an explicit parameter
* CWalletTx objects know which CWallet they belong to, for convenience, so they have their own direct (and caching) GetDebit/... functions.
* Some code was moved from CWalletDB to CWallet, such as handling of reserve keys.
* Main.cpp keeps a set of all 'registered' wallets, which should be informed about updates to the block chain, and does not have any notion about any 'main' wallet. Function in main.cpp that require a wallet (such as GenerateCoins), take an explicit CWallet* argument.
* The actual CWallet instance used by the application is defined in init.cpp as "CWallet* pwalletMain". rpc.cpp and ui.cpp use this variable.
* Functions in main.cpp and db.cpp that are not used by other modules are marked static.
* The code for handling the 'submitorder' message is removed, as it not really compatible with the idea that a node is independent from the wallet(s) connected to it, and obsolete anyway.
2011-06-01 18:28:20 +02:00
|
|
|
extern CWallet* pwalletMain;
|
|
|
|
|
2012-06-11 07:40:14 +02:00
|
|
|
void StartShutdown();
|
2013-03-23 23:14:12 +01:00
|
|
|
bool ShutdownRequested();
|
2013-03-09 18:02:57 +01:00
|
|
|
void Shutdown();
|
2015-04-03 17:50:06 +02:00
|
|
|
bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler);
|
2013-10-11 23:09:59 +02:00
|
|
|
|
2014-12-01 02:39:44 +01:00
|
|
|
/** The help message mode determines what help message to show */
|
2014-09-19 19:21:46 +02:00
|
|
|
enum HelpMessageMode {
|
2013-10-11 23:09:59 +02:00
|
|
|
HMM_BITCOIND,
|
2013-11-27 15:41:12 +01:00
|
|
|
HMM_BITCOIN_QT
|
2013-10-11 23:09:59 +02:00
|
|
|
};
|
|
|
|
|
2014-06-10 16:02:46 +02:00
|
|
|
/** Help for options shared between UI and daemon (for -help) */
|
2013-10-11 23:09:59 +02:00
|
|
|
std::string HelpMessage(HelpMessageMode mode);
|
2014-06-10 16:02:46 +02:00
|
|
|
/** Returns licensing information (for -version) */
|
|
|
|
std::string LicenseInfo();
|
2011-05-15 09:11:04 +02:00
|
|
|
|
2014-08-28 22:21:03 +02:00
|
|
|
#endif // BITCOIN_INIT_H
|