Hush them headers

This commit is contained in:
Duke Leto
2020-12-04 09:49:56 -05:00
parent 136c73a273
commit 8a5130713d
35 changed files with 105 additions and 105 deletions

View File

@@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_SCRIPT_INTERPRETER_H
#define BITCOIN_SCRIPT_INTERPRETER_H
#ifndef HUSH_SCRIPT_INTERPRETER_H
#define HUSH_SCRIPT_INTERPRETER_H
#include "script_error.h"
#include "primitives/transaction.h"
@@ -204,4 +204,4 @@ bool VerifyScript(
const BaseSignatureChecker& checker,
uint32_t consensusBranchId,
ScriptError* serror = NULL);
#endif // BITCOIN_SCRIPT_INTERPRETER_H
#endif // HUSH_SCRIPT_INTERPRETER_H

View File

@@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_SCRIPT_SCRIPT_H
#define BITCOIN_SCRIPT_SCRIPT_H
#ifndef HUSH_SCRIPT_SCRIPT_H
#define HUSH_SCRIPT_SCRIPT_H
#include "crypto/common.h"
#include "prevector.h"
@@ -631,4 +631,4 @@ public:
}
};
#endif // BITCOIN_SCRIPT_SCRIPT_H
#endif // HUSH_SCRIPT_SCRIPT_H

View File

@@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_SCRIPT_SCRIPT_ERROR_H
#define BITCOIN_SCRIPT_SCRIPT_ERROR_H
#ifndef HUSH_SCRIPT_SCRIPT_ERROR_H
#define HUSH_SCRIPT_SCRIPT_ERROR_H
typedef enum ScriptError_t
{
@@ -78,4 +78,4 @@ typedef enum ScriptError_t
const char* ScriptErrorString(const ScriptError error);
#endif // BITCOIN_SCRIPT_SCRIPT_ERROR_H
#endif // HUSH_SCRIPT_SCRIPT_ERROR_H

View File

@@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_SCRIPT_SERVERCHECKER_H
#define BITCOIN_SCRIPT_SERVERCHECKER_H
#ifndef HUSH_SCRIPT_SERVERCHECKER_H
#define HUSH_SCRIPT_SERVERCHECKER_H
#include "script/interpreter.h"
@@ -40,4 +40,4 @@ public:
int CheckEvalCondition(const CC *cond) const;
};
#endif // BITCOIN_SCRIPT_SERVERCHECKER_H
#endif // HUSH_SCRIPT_SERVERCHECKER_H

View File

@@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_SCRIPT_SIGCACHE_H
#define BITCOIN_SCRIPT_SIGCACHE_H
#ifndef HUSH_SCRIPT_SIGCACHE_H
#define HUSH_SCRIPT_SIGCACHE_H
#include "script/interpreter.h"
@@ -38,4 +38,4 @@ public:
bool VerifySignature(const std::vector<unsigned char>& vchSig, const CPubKey& vchPubKey, const uint256& sighash) const;
};
#endif // BITCOIN_SCRIPT_SIGCACHE_H
#endif // HUSH_SCRIPT_SIGCACHE_H

View File

@@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_SCRIPT_SIGN_H
#define BITCOIN_SCRIPT_SIGN_H
#ifndef HUSH_SCRIPT_SIGN_H
#define HUSH_SCRIPT_SIGN_H
#include "script/interpreter.h"
@@ -120,4 +120,4 @@ SignatureData CombineSignatures(
SignatureData DataFromTransaction(const CMutableTransaction& tx, unsigned int nIn);
void UpdateTransaction(CMutableTransaction& tx, unsigned int nIn, const SignatureData& data);
#endif // BITCOIN_SCRIPT_SIGN_H
#endif // HUSH_SCRIPT_SIGN_H

View File

@@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_SCRIPT_STANDARD_H
#define BITCOIN_SCRIPT_STANDARD_H
#ifndef HUSH_SCRIPT_STANDARD_H
#define HUSH_SCRIPT_STANDARD_H
#include "script/interpreter.h"
#include "uint256.h"
@@ -174,4 +174,4 @@ bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, std::
CScript GetScriptForDestination(const CTxDestination& dest);
CScript GetScriptForMultisig(int nRequired, const std::vector<CPubKey>& keys);
#endif // BITCOIN_SCRIPT_STANDARD_H
#endif // HUSH_SCRIPT_STANDARD_H

View File

@@ -18,12 +18,12 @@
* *
******************************************************************************/
#ifndef BITCOIN_ZCASHCONSENSUS_H
#define BITCOIN_ZCASHCONSENSUS_H
#ifndef HUSH_ZCASHCONSENSUS_H
#define HUSH_ZCASHCONSENSUS_H
#include <stdint.h>
#if defined(BUILD_BITCOIN_INTERNAL) && defined(HAVE_CONFIG_H)
#if defined(BUILD_HUSH_INTERNAL) && defined(HAVE_CONFIG_H)
#include "config/bitcoin-config.h"
#if defined(_WIN32)
#if defined(DLL_EXPORT)
@@ -82,4 +82,4 @@ EXPORT_SYMBOL unsigned int zcashconsensus_version();
#undef EXPORT_SYMBOL
#endif // BITCOIN_ZCASHCONSENSUS_H
#endif // HUSH_ZCASHCONSENSUS_H