File tree Expand file tree Collapse file tree 10 files changed +28
-28
lines changed Expand file tree Collapse file tree 10 files changed +28
-28
lines changed Original file line number Diff line number Diff line change @@ -287,4 +287,4 @@ class arith_uint256 : public base_uint<256> {
287
287
uint256 ArithToUint256 (const arith_uint256 &);
288
288
arith_uint256 UintToArith256 (const uint256 &);
289
289
290
- #endif // BITCOIN_UINT256_H
290
+ #endif // BITCOIN_ARITH_UINT256_H
Original file line number Diff line number Diff line change 3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
6
- #ifndef BITCOIN_CONSENSUS_CONSENSUS_PARAMS_H
7
- #define BITCOIN_CONSENSUS_CONSENSUS_PARAMS_H
6
+ #ifndef BITCOIN_CONSENSUS_PARAMS_H
7
+ #define BITCOIN_CONSENSUS_PARAMS_H
8
8
9
9
#include " uint256.h"
10
10
@@ -28,4 +28,4 @@ struct Params {
28
28
};
29
29
} // namespace Consensus
30
30
31
- #endif // BITCOIN_CONSENSUS_CONSENSUS_PARAMS_H
31
+ #endif // BITCOIN_CONSENSUS_PARAMS_H
Original file line number Diff line number Diff line change 3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
6
- #ifndef BITCOIN_ALLOCATORS_SECURE_H
7
- #define BITCOIN_ALLOCATORS_SECURE_H
6
+ #ifndef BITCOIN_SUPPORT_ALLOCATORS_SECURE_H
7
+ #define BITCOIN_SUPPORT_ALLOCATORS_SECURE_H
8
8
9
9
#include " support/pagelocker.h"
10
10
@@ -59,4 +59,4 @@ struct secure_allocator : public std::allocator<T> {
59
59
// This is exactly like std::string, but with a custom allocator.
60
60
typedef std::basic_string<char , std::char_traits<char >, secure_allocator<char > > SecureString;
61
61
62
- #endif // BITCOIN_ALLOCATORS_SECURE_H
62
+ #endif // BITCOIN_SUPPORT_ALLOCATORS_SECURE_H
Original file line number Diff line number Diff line change 3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
6
- #ifndef BITCOIN_ALLOCATORS_ZEROAFTERFREE_H
7
- #define BITCOIN_ALLOCATORS_ZEROAFTERFREE_H
6
+ #ifndef BITCOIN_SUPPORT_ALLOCATORS_ZEROAFTERFREE_H
7
+ #define BITCOIN_SUPPORT_ALLOCATORS_ZEROAFTERFREE_H
8
8
9
9
#include " support/cleanse.h"
10
10
@@ -45,4 +45,4 @@ struct zero_after_free_allocator : public std::allocator<T> {
45
45
// Byte-vector that clears its contents before deletion.
46
46
typedef std::vector<char , zero_after_free_allocator<char > > CSerializeData;
47
47
48
- #endif // BITCOIN_ALLOCATORS_ZEROAFTERFREE_H
48
+ #endif // BITCOIN_SUPPORT_ALLOCATORS_ZEROAFTERFREE_H
Original file line number Diff line number Diff line change 3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
6
- #ifndef BITCOIN_ALLOCATORS_PAGELOCKER_H
7
- #define BITCOIN_ALLOCATORS_PAGELOCKER_H
6
+ #ifndef BITCOIN_SUPPORT_PAGELOCKER_H
7
+ #define BITCOIN_SUPPORT_PAGELOCKER_H
8
8
9
9
#include " support/cleanse.h"
10
10
@@ -175,4 +175,4 @@ void UnlockObject(const T& t)
175
175
LockedPageManager::Instance ().UnlockRange ((void *)(&t), sizeof (T));
176
176
}
177
177
178
- #endif // BITCOIN_ALLOCATORS_PAGELOCKER_H
178
+ #endif // BITCOIN_SUPPORT_PAGELOCKER_H
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #ifndef BITCOIN_CRYPTER_H
6
- #define BITCOIN_CRYPTER_H
5
+ #ifndef BITCOIN_WALLET_CRYPTER_H
6
+ #define BITCOIN_WALLET_CRYPTER_H
7
7
8
8
#include " keystore.h"
9
9
#include " serialize.h"
@@ -193,4 +193,4 @@ class CCryptoKeyStore : public CBasicKeyStore
193
193
boost::signals2::signal<void (CCryptoKeyStore* wallet)> NotifyStatusChanged;
194
194
};
195
195
196
- #endif // BITCOIN_CRYPTER_H
196
+ #endif // BITCOIN_WALLET_CRYPTER_H
Original file line number Diff line number Diff line change 3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
6
- #ifndef BITCOIN_DB_H
7
- #define BITCOIN_DB_H
6
+ #ifndef BITCOIN_WALLET_DB_H
7
+ #define BITCOIN_WALLET_DB_H
8
8
9
9
#include " clientversion.h"
10
10
#include " serialize.h"
@@ -307,4 +307,4 @@ class CDB
307
307
bool static Rewrite (const std::string& strFile, const char * pszSkip = NULL );
308
308
};
309
309
310
- #endif // BITCOIN_DB_H
310
+ #endif // BITCOIN_WALLET_DB_H
Original file line number Diff line number Diff line change 3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
6
- #ifndef BITCOIN_WALLET_H
7
- #define BITCOIN_WALLET_H
6
+ #ifndef BITCOIN_WALLET_WALLET_H
7
+ #define BITCOIN_WALLET_WALLET_H
8
8
9
9
#include " amount.h"
10
10
#include " key.h"
@@ -869,4 +869,4 @@ class CAccountingEntry
869
869
std::vector<char > _ssExtra;
870
870
};
871
871
872
- #endif // BITCOIN_WALLET_H
872
+ #endif // BITCOIN_WALLET_WALLET_H
Original file line number Diff line number Diff line change 3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
6
- #ifndef BITCOIN_WALLET_ISMINE_H
7
- #define BITCOIN_WALLET_ISMINE_H
6
+ #ifndef BITCOIN_WALLET_WALLET_ISMINE_H
7
+ #define BITCOIN_WALLET_WALLET_ISMINE_H
8
8
9
9
#include " key.h"
10
10
#include " script/standard.h"
@@ -26,4 +26,4 @@ typedef uint8_t isminefilter;
26
26
isminetype IsMine (const CKeyStore& keystore, const CScript& scriptPubKey);
27
27
isminetype IsMine (const CKeyStore& keystore, const CTxDestination& dest);
28
28
29
- #endif // BITCOIN_WALLET_ISMINE_H
29
+ #endif // BITCOIN_WALLET_WALLET_ISMINE_H
Original file line number Diff line number Diff line change 3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
6
- #ifndef BITCOIN_WALLETDB_H
7
- #define BITCOIN_WALLETDB_H
6
+ #ifndef BITCOIN_WALLET_WALLETDB_H
7
+ #define BITCOIN_WALLET_WALLETDB_H
8
8
9
9
#include " amount.h"
10
10
#include " wallet/db.h"
@@ -140,4 +140,4 @@ class CWalletDB : public CDB
140
140
bool BackupWallet (const CWallet& wallet, const std::string& strDest);
141
141
void ThreadFlushWalletDB (const std::string& strFile);
142
142
143
- #endif // BITCOIN_WALLETDB_H
143
+ #endif // BITCOIN_WALLET_WALLETDB_H
You can’t perform that action at this time.
0 commit comments