File tree Expand file tree Collapse file tree 4 files changed +1
-15
lines changed Expand file tree Collapse file tree 4 files changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,10 @@ class CAddrMan;
21
21
struct CBlockLocator ;
22
22
class CDiskBlockIndex ;
23
23
class COutPoint ;
24
- class CWallet ;
25
24
26
25
extern unsigned int nWalletDBUpdated;
27
26
28
27
void ThreadFlushWalletDB (const std::string& strWalletFile);
29
- bool BackupWallet (const CWallet& wallet, const std::string& strDest);
30
28
31
29
32
30
class CDBEnv
Original file line number Diff line number Diff line change 10
10
#include " chainparams.h"
11
11
#include " checkpoints.h"
12
12
#include " checkqueue.h"
13
- #include " db.h"
14
13
#include " init.h"
15
14
#include " net.h"
16
15
#include " txdb.h"
17
16
#include " txmempool.h"
18
17
#include " ui_interface.h"
19
18
#include " util.h"
20
- #include " wallet.h"
21
19
22
20
#include < inttypes.h>
23
21
#include < stdint.h>
@@ -33,9 +31,6 @@ using namespace boost;
33
31
// Global state
34
32
//
35
33
36
- CCriticalSection cs_setpwalletRegistered;
37
- set<CWallet*> setpwalletRegistered;
38
-
39
34
CCriticalSection cs_main;
40
35
41
36
CTxMemPool mempool;
Original file line number Diff line number Diff line change 28
28
#include < utility>
29
29
#include < vector>
30
30
31
- class CBlock ;
32
31
class CBlockIndex ;
33
32
class CBloomFilter ;
34
33
class CInv ;
35
- class CKeyItem ;
36
- class CNode ;
37
- class CNodeSignals ;
38
- class CReserveKey ;
39
- class CWallet ;
40
34
41
35
/* * The maximum allowed size for a serialized block, in bytes (network rule) */
42
36
static const unsigned int MAX_BLOCK_SIZE = 1000000 ;
@@ -103,11 +97,9 @@ extern int64_t nTransactionFee;
103
97
static const uint64_t nMinDiskSpace = 52428800 ;
104
98
105
99
106
- class CReserveKey ;
107
100
class CCoinsDB ;
108
101
class CBlockTreeDB ;
109
102
struct CDiskBlockPos ;
110
- class CCoins ;
111
103
class CTxUndo ;
112
104
class CCoinsView ;
113
105
class CCoinsViewCache ;
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ class CBlockLocator;
20
20
class CKeyPool ;
21
21
class CMasterKey ;
22
22
class CScript ;
23
+ class CWallet ;
23
24
class CWalletTx ;
24
25
class uint160 ;
25
26
class uint256 ;
You can’t perform that action at this time.
0 commit comments