2010-07-14 17:54:31 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2013-10-20 21:25:06 +02:00
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
2010-07-14 17:54:31 +02:00
|
|
|
// Distributed under the MIT/X11 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>
|
|
|
|
|
|
|
|
class CWallet;
|
2012-04-15 22:10:54 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
namespace boost {
|
|
|
|
class thread_group;
|
|
|
|
};
|
|
|
|
|
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();
|
2013-12-20 11:48:22 +01:00
|
|
|
bool AppInit2(boost::thread_group& threadGroup);
|
2013-10-11 23:09:59 +02:00
|
|
|
|
|
|
|
/* The help message mode determines what help message to show */
|
|
|
|
enum HelpMessageMode
|
|
|
|
{
|
|
|
|
HMM_BITCOIND,
|
2013-11-27 15:41:12 +01:00
|
|
|
HMM_BITCOIN_QT
|
2013-10-11 23:09:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
std::string HelpMessage(HelpMessageMode mode);
|
2011-05-15 09:11:04 +02:00
|
|
|
|
|
|
|
#endif
|