ensure consistent header comment naming conventions
- BITCOIN_FOLDER_SUBFOLDER_FILENAME_H
This commit is contained in:
committed by
Wladimir J. van der Laan
parent
9e16cb108e
commit
a21df62069
@@ -2,8 +2,8 @@
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#ifndef BITCOIN_CRYPTER_H
|
||||
#define BITCOIN_CRYPTER_H
|
||||
#ifndef BITCOIN_WALLET_CRYPTER_H
|
||||
#define BITCOIN_WALLET_CRYPTER_H
|
||||
|
||||
#include "keystore.h"
|
||||
#include "serialize.h"
|
||||
@@ -193,4 +193,4 @@ public:
|
||||
boost::signals2::signal<void (CCryptoKeyStore* wallet)> NotifyStatusChanged;
|
||||
};
|
||||
|
||||
#endif // BITCOIN_CRYPTER_H
|
||||
#endif // BITCOIN_WALLET_CRYPTER_H
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#ifndef BITCOIN_DB_H
|
||||
#define BITCOIN_DB_H
|
||||
#ifndef BITCOIN_WALLET_DB_H
|
||||
#define BITCOIN_WALLET_DB_H
|
||||
|
||||
#include "clientversion.h"
|
||||
#include "serialize.h"
|
||||
@@ -307,4 +307,4 @@ public:
|
||||
bool static Rewrite(const std::string& strFile, const char* pszSkip = NULL);
|
||||
};
|
||||
|
||||
#endif // BITCOIN_DB_H
|
||||
#endif // BITCOIN_WALLET_DB_H
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#ifndef BITCOIN_WALLET_H
|
||||
#define BITCOIN_WALLET_H
|
||||
#ifndef BITCOIN_WALLET_WALLET_H
|
||||
#define BITCOIN_WALLET_WALLET_H
|
||||
|
||||
#include "amount.h"
|
||||
#include "key.h"
|
||||
@@ -869,4 +869,4 @@ private:
|
||||
std::vector<char> _ssExtra;
|
||||
};
|
||||
|
||||
#endif // BITCOIN_WALLET_H
|
||||
#endif // BITCOIN_WALLET_WALLET_H
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#ifndef BITCOIN_WALLET_ISMINE_H
|
||||
#define BITCOIN_WALLET_ISMINE_H
|
||||
#ifndef BITCOIN_WALLET_WALLET_ISMINE_H
|
||||
#define BITCOIN_WALLET_WALLET_ISMINE_H
|
||||
|
||||
#include "key.h"
|
||||
#include "script/standard.h"
|
||||
@@ -26,4 +26,4 @@ typedef uint8_t isminefilter;
|
||||
isminetype IsMine(const CKeyStore& keystore, const CScript& scriptPubKey);
|
||||
isminetype IsMine(const CKeyStore& keystore, const CTxDestination& dest);
|
||||
|
||||
#endif // BITCOIN_WALLET_ISMINE_H
|
||||
#endif // BITCOIN_WALLET_WALLET_ISMINE_H
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#ifndef BITCOIN_WALLETDB_H
|
||||
#define BITCOIN_WALLETDB_H
|
||||
#ifndef BITCOIN_WALLET_WALLETDB_H
|
||||
#define BITCOIN_WALLET_WALLETDB_H
|
||||
|
||||
#include "amount.h"
|
||||
#include "wallet/db.h"
|
||||
@@ -140,4 +140,4 @@ private:
|
||||
bool BackupWallet(const CWallet& wallet, const std::string& strDest);
|
||||
void ThreadFlushWalletDB(const std::string& strFile);
|
||||
|
||||
#endif // BITCOIN_WALLETDB_H
|
||||
#endif // BITCOIN_WALLET_WALLETDB_H
|
||||
|
||||
Reference in New Issue
Block a user