Browse Source

Hush dat wallet

pull/5/head
Duke Leto 4 years ago
parent
commit
6f556c2b60
  1. 6
      src/wallet/crypter.h
  2. 6
      src/wallet/db.h
  3. 6
      src/wallet/rpchushwallet.h
  4. 6
      src/wallet/rpcwallet.h
  5. 6
      src/wallet/wallet.h
  6. 6
      src/wallet/wallet_ismine.h
  7. 6
      src/wallet/walletdb.h

6
src/wallet/crypter.h

@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_WALLET_CRYPTER_H
#define BITCOIN_WALLET_CRYPTER_H
#ifndef HUSH_WALLET_CRYPTER_H
#define HUSH_WALLET_CRYPTER_H
#include "keystore.h"
#include "serialize.h"
@ -256,4 +256,4 @@ public:
boost::signals2::signal<void (CCryptoKeyStore* wallet)> NotifyStatusChanged;
};
#endif // BITCOIN_WALLET_CRYPTER_H
#endif // HUSH_WALLET_CRYPTER_H

6
src/wallet/db.h

@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_WALLET_DB_H
#define BITCOIN_WALLET_DB_H
#ifndef HUSH_WALLET_DB_H
#define HUSH_WALLET_DB_H
#include "clientversion.h"
#include "serialize.h"
@ -332,4 +332,4 @@ public:
bool static Rewrite(const std::string& strFile, const char* pszSkip = NULL);
};
#endif // BITCOIN_WALLET_DB_H
#endif // HUSH_WALLET_DB_H

6
src/wallet/rpchushwallet.h

@ -3,8 +3,8 @@
// Distributed under the GPLv3 software license, see the accompanying
// file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
#ifndef BITCOIN_WALLET_RPCHUSHWALLET_H
#define BITCOIN_WALLET_RPCHUSHWALLET_H
#ifndef HUSH_WALLET_RPCHUSHWALLET_H
#define HUSH_WALLET_RPCHUSHWALLET_H
struct balancestruct {
CAmount confirmed;
@ -19,4 +19,4 @@ void zsTxSendsToJSON(const CWalletTx& wtx, UniValue& sends, CAmount& totalSends,
void zsWalletTxJSON(const CWalletTx& wtx, UniValue& ret, const std::string strAddress, bool fBool, const int returnType);
#endif //BITCOIN_WALLET_RPCWALLET_H
#endif //HUSH_WALLET_RPCWALLET_H

6
src/wallet/rpcwallet.h

@ -17,11 +17,11 @@
* *
******************************************************************************/
#ifndef BITCOIN_WALLET_RPCWALLET_H
#define BITCOIN_WALLET_RPCWALLET_H
#ifndef HUSH_WALLET_RPCWALLET_H
#define HUSH_WALLET_RPCWALLET_H
class CRPCTable;
void RegisterWalletRPCCommands(CRPCTable &tableRPC);
#endif //BITCOIN_WALLET_RPCWALLET_H
#endif //HUSH_WALLET_RPCWALLET_H

6
src/wallet/wallet.h

@ -19,8 +19,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_WALLET_WALLET_H
#define BITCOIN_WALLET_WALLET_H
#ifndef HUSH_WALLET_WALLET_H
#define HUSH_WALLET_WALLET_H
#include "amount.h"
#include "asyncrpcoperation.h"
@ -1499,4 +1499,4 @@ public:
#define RETURN_IF_ERROR(CCerror) if ( CCerror != "" ) { ERR_RESULT(CCerror); return(result); }
#endif // BITCOIN_WALLET_WALLET_H
#endif // HUSH_WALLET_WALLET_H

6
src/wallet/wallet_ismine.h

@ -18,8 +18,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_WALLET_WALLET_ISMINE_H
#define BITCOIN_WALLET_WALLET_ISMINE_H
#ifndef HUSH_WALLET_WALLET_ISMINE_H
#define HUSH_WALLET_WALLET_ISMINE_H
#include "key.h"
#include "script/standard.h"
@ -43,4 +43,4 @@ typedef uint8_t isminefilter;
isminetype IsMine(const CKeyStore& keystore, const CScript& scriptPubKey);
isminetype IsMine(const CKeyStore& keystore, const CTxDestination& dest);
#endif // BITCOIN_WALLET_WALLET_ISMINE_H
#endif // HUSH_WALLET_WALLET_ISMINE_H

6
src/wallet/walletdb.h

@ -19,8 +19,8 @@
* *
******************************************************************************/
#ifndef BITCOIN_WALLET_WALLETDB_H
#define BITCOIN_WALLET_WALLETDB_H
#ifndef HUSH_WALLET_WALLETDB_H
#define HUSH_WALLET_WALLETDB_H
#include "amount.h"
#include "wallet/db.h"
@ -219,4 +219,4 @@ private:
bool BackupWallet(const CWallet& wallet, const std::string& strDest);
void ThreadFlushWalletDB(const std::string& strFile);
#endif // BITCOIN_WALLET_WALLETDB_H
#endif // HUSH_WALLET_WALLETDB_H

Loading…
Cancel
Save