commit
df504e924a
89 changed files with 269 additions and 270 deletions
|
@ -114,8 +114,8 @@ def main():
|
||||||
exit(1)
|
exit(1)
|
||||||
g = sys.stdout
|
g = sys.stdout
|
||||||
indir = sys.argv[1]
|
indir = sys.argv[1]
|
||||||
g.write('#ifndef H_CHAINPARAMSSEEDS\n')
|
g.write('#ifndef BITCOIN_CHAINPARAMSSEEDS_H\n')
|
||||||
g.write('#define H_CHAINPARAMSSEEDS\n')
|
g.write('#define BITCOIN_CHAINPARAMSSEEDS_H\n')
|
||||||
g.write('/**\n')
|
g.write('/**\n')
|
||||||
g.write(' * List of fixed seed nodes for the bitcoin network\n')
|
g.write(' * List of fixed seed nodes for the bitcoin network\n')
|
||||||
g.write(' * AUTOGENERATED by share/seeds/generate-seeds.py\n')
|
g.write(' * AUTOGENERATED by share/seeds/generate-seeds.py\n')
|
||||||
|
@ -128,7 +128,7 @@ def main():
|
||||||
g.write('\n')
|
g.write('\n')
|
||||||
with open(os.path.join(indir,'nodes_test.txt'),'r') as f:
|
with open(os.path.join(indir,'nodes_test.txt'),'r') as f:
|
||||||
process_nodes(g, f, 'pnSeed6_test', 18333)
|
process_nodes(g, f, 'pnSeed6_test', 18333)
|
||||||
g.write('#endif\n')
|
g.write('#endif // BITCOIN_CHAINPARAMSSEEDS_H\n')
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef _BITCOIN_ADDRMAN
|
#ifndef BITCOIN_ADDRMAN_H
|
||||||
#define _BITCOIN_ADDRMAN
|
#define BITCOIN_ADDRMAN_H
|
||||||
|
|
||||||
#include "netbase.h"
|
#include "netbase.h"
|
||||||
#include "protocol.h"
|
#include "protocol.h"
|
||||||
|
@ -514,4 +514,4 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _BITCOIN_ADDRMAN
|
#endif // BITCOIN_ADDRMAN_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef _BITCOINALERT_H_
|
#ifndef BITCOIN_ALERT_H
|
||||||
#define _BITCOINALERT_H_
|
#define BITCOIN_ALERT_H
|
||||||
|
|
||||||
#include "serialize.h"
|
#include "serialize.h"
|
||||||
#include "sync.h"
|
#include "sync.h"
|
||||||
|
@ -110,4 +110,4 @@ public:
|
||||||
static CAlert getAlertByHash(const uint256 &hash);
|
static CAlert getAlertByHash(const uint256 &hash);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _BITCOINALERT_H_
|
#endif // BITCOIN_ALERT_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_CHAIN
|
#ifndef BITCOIN_CHAIN_H
|
||||||
#define H_BITCOIN_CHAIN
|
#define BITCOIN_CHAIN_H
|
||||||
|
|
||||||
#include "core/block.h"
|
#include "core/block.h"
|
||||||
#include "pow.h"
|
#include "pow.h"
|
||||||
|
@ -409,4 +409,4 @@ public:
|
||||||
const CBlockIndex *FindFork(const CBlockIndex *pindex) const;
|
const CBlockIndex *FindFork(const CBlockIndex *pindex) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // H_BITCOIN_CHAIN
|
#endif // BITCOIN_CHAIN_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_CHAIN_PARAMS_H
|
#ifndef BITCOIN_CHAINPARAMS_H
|
||||||
#define BITCOIN_CHAIN_PARAMS_H
|
#define BITCOIN_CHAINPARAMS_H
|
||||||
|
|
||||||
#include "chainparamsbase.h"
|
#include "chainparamsbase.h"
|
||||||
#include "checkpoints.h"
|
#include "checkpoints.h"
|
||||||
|
@ -151,4 +151,4 @@ void SelectParams(CBaseChainParams::Network network);
|
||||||
*/
|
*/
|
||||||
bool SelectParamsFromCommandLine();
|
bool SelectParamsFromCommandLine();
|
||||||
|
|
||||||
#endif // BITCOIN_CHAIN_PARAMS_H
|
#endif // BITCOIN_CHAINPARAMS_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_CHAIN_PARAMS_BASE_H
|
#ifndef BITCOIN_CHAINPARAMSBASE_H
|
||||||
#define BITCOIN_CHAIN_PARAMS_BASE_H
|
#define BITCOIN_CHAINPARAMSBASE_H
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -62,4 +62,4 @@ bool SelectBaseParamsFromCommandLine();
|
||||||
*/
|
*/
|
||||||
bool AreBaseParamsConfigured();
|
bool AreBaseParamsConfigured();
|
||||||
|
|
||||||
#endif // BITCOIN_CHAIN_PARAMS_BASE_H
|
#endif // BITCOIN_CHAINPARAMSBASE_H
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
#ifndef H_CHAINPARAMSSEEDS
|
#ifndef BITCOIN_CHAINPARAMSSEEDS_H
|
||||||
#define H_CHAINPARAMSSEEDS
|
#define BITCOIN_CHAINPARAMSSEEDS_H
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List of fixed seed nodes for the bitcoin network
|
* List of fixed seed nodes for the bitcoin network
|
||||||
* AUTOGENERATED by contrib/devtools/generate-seeds.py
|
* AUTOGENERATED by share/seeds/generate-seeds.py
|
||||||
*
|
*
|
||||||
* Each line contains a 16-byte IPv6 address and a port.
|
* Each line contains a 16-byte IPv6 address and a port.
|
||||||
* IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly.
|
* IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly.
|
||||||
*/
|
*/
|
||||||
|
@ -638,4 +637,4 @@ static SeedSpec6 pnSeed6_test[] = {
|
||||||
{{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x99,0xcb,0x26,0x31,0xba,0x48,0x51,0x31,0x39,0x0d}, 18333},
|
{{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x99,0xcb,0x26,0x31,0xba,0x48,0x51,0x31,0x39,0x0d}, 18333},
|
||||||
{{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x44,0xf4,0xf4,0xf0,0xbf,0xf7,0x7e,0x6d,0xc4,0xe8}, 18333}
|
{{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x44,0xf4,0xf4,0xf0,0xbf,0xf7,0x7e,0x6d,0xc4,0xe8}, 18333}
|
||||||
};
|
};
|
||||||
#endif
|
#endif // BITCOIN_CHAINPARAMSSEEDS_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_CHECKPOINT_H
|
#ifndef BITCOIN_CHECKPOINTS_H
|
||||||
#define BITCOIN_CHECKPOINT_H
|
#define BITCOIN_CHECKPOINTS_H
|
||||||
|
|
||||||
#include "uint256.h"
|
#include "uint256.h"
|
||||||
|
|
||||||
|
@ -40,4 +40,4 @@ extern bool fEnabled;
|
||||||
|
|
||||||
} //namespace Checkpoints
|
} //namespace Checkpoints
|
||||||
|
|
||||||
#endif // BITCOIN_CHECKPOINT_H
|
#endif // BITCOIN_CHECKPOINTS_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef CHECKQUEUE_H
|
#ifndef BITCOIN_CHECKQUEUE_H
|
||||||
#define CHECKQUEUE_H
|
#define BITCOIN_CHECKQUEUE_H
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -204,4 +204,4 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // CHECKQUEUE_H
|
#endif // BITCOIN_CHECKQUEUE_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef CLIENTVERSION_H
|
#ifndef BITCOIN_CLIENTVERSION_H
|
||||||
#define CLIENTVERSION_H
|
#define BITCOIN_CLIENTVERSION_H
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
#include "config/bitcoin-config.h"
|
#include "config/bitcoin-config.h"
|
||||||
|
@ -67,4 +67,4 @@ std::string FormatSubVersion(const std::string& name, int nClientVersion, const
|
||||||
|
|
||||||
#endif // WINDRES_PREPROC
|
#endif // WINDRES_PREPROC
|
||||||
|
|
||||||
#endif // CLIENTVERSION_H
|
#endif // BITCOIN_CLIENTVERSION_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef COINCONTROL_H
|
#ifndef BITCOIN_COINCONTROL_H
|
||||||
#define COINCONTROL_H
|
#define BITCOIN_COINCONTROL_H
|
||||||
|
|
||||||
#include "core/transaction.h"
|
#include "core/transaction.h"
|
||||||
|
|
||||||
|
@ -59,4 +59,4 @@ private:
|
||||||
std::set<COutPoint> setSelected;
|
std::set<COutPoint> setSelected;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // COINCONTROL_H
|
#endif // BITCOIN_COINCONTROL_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef _BITCOIN_COMPAT_H
|
#ifndef BITCOIN_COMPAT_H
|
||||||
#define _BITCOIN_COMPAT_H
|
#define BITCOIN_COMPAT_H
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#ifdef _WIN32_WINNT
|
#ifdef _WIN32_WINNT
|
||||||
|
@ -84,4 +84,4 @@ typedef u_int SOCKET;
|
||||||
#define THREAD_PRIORITY_ABOVE_NORMAL (-2)
|
#define THREAD_PRIORITY_ABOVE_NORMAL (-2)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // _BITCOIN_COMPAT_H
|
#endif // BITCOIN_COMPAT_H
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCON_COMPAT_SANITY_H
|
#ifndef BITCOIN_COMPAT_SANITY_H
|
||||||
#define BITCON_COMPAT_SANITY_H
|
#define BITCOIN_COMPAT_SANITY_H
|
||||||
|
|
||||||
bool glibc_sanity_test();
|
bool glibc_sanity_test();
|
||||||
bool glibcxx_sanity_test();
|
bool glibcxx_sanity_test();
|
||||||
|
|
||||||
#endif // BITCON_COMPAT_SANITY_H
|
#endif // BITCOIN_COMPAT_SANITY_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_COMPRESSOR
|
#ifndef BITCOIN_COMPRESSOR_H
|
||||||
#define H_BITCOIN_COMPRESSOR
|
#define BITCOIN_COMPRESSOR_H
|
||||||
|
|
||||||
#include "core/transaction.h"
|
#include "core/transaction.h"
|
||||||
#include "script/script.h"
|
#include "script/script.h"
|
||||||
|
@ -116,4 +116,4 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // H_BITCOIN_COMPRESSOR
|
#endif // BITCOIN_COMPRESSOR_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_CORE_BLOCK
|
#ifndef BITCOIN_CORE_BLOCK_H
|
||||||
#define H_BITCOIN_CORE_BLOCK
|
#define BITCOIN_CORE_BLOCK_H
|
||||||
|
|
||||||
#include "core/transaction.h"
|
#include "core/transaction.h"
|
||||||
#include "serialize.h"
|
#include "serialize.h"
|
||||||
|
@ -165,4 +165,4 @@ struct CBlockLocator
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // H_BITCOIN_CORE_BLOCK
|
#endif // BITCOIN_CORE_BLOCK_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_CORE_TRANSACTION
|
#ifndef BITCOIN_CORE_TRANSACTION_H
|
||||||
#define H_BITCOIN_CORE_TRANSACTION
|
#define BITCOIN_CORE_TRANSACTION_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
#include "script/script.h"
|
#include "script/script.h"
|
||||||
|
@ -273,4 +273,4 @@ struct CMutableTransaction
|
||||||
uint256 GetHash() const;
|
uint256 GetHash() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // H_BITCOIN_CORE_TRANSACTION
|
#endif // BITCOIN_CORE_TRANSACTION_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef __BITCOIN_CORE_IO_H__
|
#ifndef BITCOIN_CORE_IO_H
|
||||||
#define __BITCOIN_CORE_IO_H__
|
#define BITCOIN_CORE_IO_H
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -26,4 +26,4 @@ extern void ScriptPubKeyToUniv(const CScript& scriptPubKey,
|
||||||
UniValue& out, bool fIncludeHex);
|
UniValue& out, bool fIncludeHex);
|
||||||
extern void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry);
|
extern void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry);
|
||||||
|
|
||||||
#endif // __BITCOIN_CORE_IO_H__
|
#endif // BITCOIN_CORE_IO_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef __CRYPTER_H__
|
#ifndef BITCOIN_CRYPTER_H
|
||||||
#define __CRYPTER_H__
|
#define BITCOIN_CRYPTER_H
|
||||||
|
|
||||||
#include "allocators.h"
|
#include "allocators.h"
|
||||||
#include "serialize.h"
|
#include "serialize.h"
|
||||||
|
@ -195,4 +195,4 @@ public:
|
||||||
boost::signals2::signal<void (CCryptoKeyStore* wallet)> NotifyStatusChanged;
|
boost::signals2::signal<void (CCryptoKeyStore* wallet)> NotifyStatusChanged;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // __CRYPTER_H__
|
#endif // BITCOIN_CRYPTER_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_RIPEMD160_H
|
#ifndef BITCOIN_CRYPTO_RIPEMD160_H
|
||||||
#define BITCOIN_RIPEMD160_H
|
#define BITCOIN_CRYPTO_RIPEMD160_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -25,4 +25,4 @@ public:
|
||||||
CRIPEMD160& Reset();
|
CRIPEMD160& Reset();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BITCOIN_RIPEMD160_H
|
#endif // BITCOIN_CRYPTO_RIPEMD160_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_SHA1_H
|
#ifndef BITCOIN_CRYPTO_SHA1_H
|
||||||
#define BITCOIN_SHA1_H
|
#define BITCOIN_CRYPTO_SHA1_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -25,4 +25,4 @@ public:
|
||||||
CSHA1& Reset();
|
CSHA1& Reset();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BITCOIN_SHA1_H
|
#endif // BITCOIN_CRYPTO_SHA1_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_SHA2_H
|
#ifndef BITCOIN_CRYPTO_SHA2_H
|
||||||
#define BITCOIN_SHA2_H
|
#define BITCOIN_CRYPTO_SHA2_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -61,4 +61,4 @@ public:
|
||||||
void Finalize(unsigned char hash[OUTPUT_SIZE]);
|
void Finalize(unsigned char hash[OUTPUT_SIZE]);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BITCOIN_SHA2_H
|
#endif // BITCOIN_CRYPTO_SHA2_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_EC_WRAPPER_H
|
#ifndef BITCOIN_ECWRAPPER_H
|
||||||
#define BITCOIN_EC_WRAPPER_H
|
#define BITCOIN_ECWRAPPER_H
|
||||||
|
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
#error This header can only be compiled as C++.
|
#error This header can only be compiled as C++.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __INCLUDED_PROTOCOL_H__
|
#ifndef BITCOIN_PROTOCOL_H
|
||||||
#define __INCLUDED_PROTOCOL_H__
|
#define BITCOIN_PROTOCOL_H
|
||||||
|
|
||||||
#include "netbase.h"
|
#include "netbase.h"
|
||||||
#include "serialize.h"
|
#include "serialize.h"
|
||||||
|
@ -149,4 +149,4 @@ enum {
|
||||||
MSG_FILTERED_BLOCK,
|
MSG_FILTERED_BLOCK,
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // __INCLUDED_PROTOCOL_H__
|
#endif // BITCOIN_PROTOCOL_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef ADDRESSBOOKPAGE_H
|
#ifndef BITCOIN_QT_ADDRESSBOOKPAGE_H
|
||||||
#define ADDRESSBOOKPAGE_H
|
#define BITCOIN_QT_ADDRESSBOOKPAGE_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
@ -84,4 +84,4 @@ signals:
|
||||||
void sendCoins(QString addr);
|
void sendCoins(QString addr);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // ADDRESSBOOKPAGE_H
|
#endif // BITCOIN_QT_ADDRESSBOOKPAGE_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef ADDRESSTABLEMODEL_H
|
#ifndef BITCOIN_QT_ADDRESSTABLEMODEL_H
|
||||||
#define ADDRESSTABLEMODEL_H
|
#define BITCOIN_QT_ADDRESSTABLEMODEL_H
|
||||||
|
|
||||||
#include <QAbstractTableModel>
|
#include <QAbstractTableModel>
|
||||||
#include <QStringList>
|
#include <QStringList>
|
||||||
|
@ -92,4 +92,4 @@ public slots:
|
||||||
friend class AddressTablePriv;
|
friend class AddressTablePriv;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // ADDRESSTABLEMODEL_H
|
#endif // BITCOIN_QT_ADDRESSTABLEMODEL_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef ASKPASSPHRASEDIALOG_H
|
#ifndef BITCOIN_QT_ASKPASSPHRASEDIALOG_H
|
||||||
#define ASKPASSPHRASEDIALOG_H
|
#define BITCOIN_QT_ASKPASSPHRASEDIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
@ -48,4 +48,4 @@ protected:
|
||||||
bool eventFilter(QObject *object, QEvent *event);
|
bool eventFilter(QObject *object, QEvent *event);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // ASKPASSPHRASEDIALOG_H
|
#endif // BITCOIN_QT_ASKPASSPHRASEDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOINADDRESSVALIDATOR_H
|
#ifndef BITCOIN_QT_BITCOINADDRESSVALIDATOR_H
|
||||||
#define BITCOINADDRESSVALIDATOR_H
|
#define BITCOIN_QT_BITCOINADDRESSVALIDATOR_H
|
||||||
|
|
||||||
#include <QValidator>
|
#include <QValidator>
|
||||||
|
|
||||||
|
@ -32,4 +32,4 @@ public:
|
||||||
State validate(QString &input, int &pos) const;
|
State validate(QString &input, int &pos) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BITCOINADDRESSVALIDATOR_H
|
#endif // BITCOIN_QT_BITCOINADDRESSVALIDATOR_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOINAMOUNTFIELD_H
|
#ifndef BITCOIN_QT_BITCOINAMOUNTFIELD_H
|
||||||
#define BITCOINAMOUNTFIELD_H
|
#define BITCOIN_QT_BITCOINAMOUNTFIELD_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
|
|
||||||
|
@ -69,4 +69,4 @@ private slots:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BITCOINAMOUNTFIELD_H
|
#endif // BITCOIN_QT_BITCOINAMOUNTFIELD_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOINGUI_H
|
#ifndef BITCOIN_QT_BITCOINGUI_H
|
||||||
#define BITCOINGUI_H
|
#define BITCOIN_QT_BITCOINGUI_H
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
#include "config/bitcoin-config.h"
|
#include "config/bitcoin-config.h"
|
||||||
|
@ -236,4 +236,4 @@ private slots:
|
||||||
void onMenuSelection(QAction* action);
|
void onMenuSelection(QAction* action);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BITCOINGUI_H
|
#endif // BITCOIN_QT_BITCOINGUI_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOINUNITS_H
|
#ifndef BITCOIN_QT_BITCOINUNITS_H
|
||||||
#define BITCOINUNITS_H
|
#define BITCOIN_QT_BITCOINUNITS_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
|
|
||||||
|
@ -126,4 +126,4 @@ private:
|
||||||
};
|
};
|
||||||
typedef BitcoinUnits::Unit BitcoinUnit;
|
typedef BitcoinUnits::Unit BitcoinUnit;
|
||||||
|
|
||||||
#endif // BITCOINUNITS_H
|
#endif // BITCOIN_QT_BITCOINUNITS_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef CLIENTMODEL_H
|
#ifndef BITCOIN_QT_CLIENTMODEL_H
|
||||||
#define CLIENTMODEL_H
|
#define BITCOIN_QT_CLIENTMODEL_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
|
@ -102,4 +102,4 @@ public slots:
|
||||||
void updateAlert(const QString &hash, int status);
|
void updateAlert(const QString &hash, int status);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // CLIENTMODEL_H
|
#endif // BITCOIN_QT_CLIENTMODEL_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef COINCONTROLDIALOG_H
|
#ifndef BITCOIN_QT_COINCONTROLDIALOG_H
|
||||||
#define COINCONTROLDIALOG_H
|
#define BITCOIN_QT_COINCONTROLDIALOG_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
|
|
||||||
|
@ -124,4 +124,4 @@ private slots:
|
||||||
void updateLabelLocked();
|
void updateLabelLocked();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // COINCONTROLDIALOG_H
|
#endif // BITCOIN_QT_COINCONTROLDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef COINCONTROLTREEWIDGET_H
|
#ifndef BITCOIN_QT_COINCONTROLTREEWIDGET_H
|
||||||
#define COINCONTROLTREEWIDGET_H
|
#define BITCOIN_QT_COINCONTROLTREEWIDGET_H
|
||||||
|
|
||||||
#include <QKeyEvent>
|
#include <QKeyEvent>
|
||||||
#include <QTreeWidget>
|
#include <QTreeWidget>
|
||||||
|
@ -19,4 +19,4 @@ protected:
|
||||||
virtual void keyPressEvent(QKeyEvent *event);
|
virtual void keyPressEvent(QKeyEvent *event);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // COINCONTROLTREEWIDGET_H
|
#endif // BITCOIN_QT_COINCONTROLTREEWIDGET_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef CSVMODELWRITER_H
|
#ifndef BITCOIN_QT_CSVMODELWRITER_H
|
||||||
#define CSVMODELWRITER_H
|
#define BITCOIN_QT_CSVMODELWRITER_H
|
||||||
|
|
||||||
#include <QList>
|
#include <QList>
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
@ -43,4 +43,4 @@ private:
|
||||||
QList<Column> columns;
|
QList<Column> columns;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // CSVMODELWRITER_H
|
#endif // BITCOIN_QT_CSVMODELWRITER_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef EDITADDRESSDIALOG_H
|
#ifndef BITCOIN_QT_EDITADDRESSDIALOG_H
|
||||||
#define EDITADDRESSDIALOG_H
|
#define BITCOIN_QT_EDITADDRESSDIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
@ -54,4 +54,4 @@ private:
|
||||||
QString address;
|
QString address;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // EDITADDRESSDIALOG_H
|
#endif // BITCOIN_QT_EDITADDRESSDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef GUICONSTANTS_H
|
#ifndef BITCOIN_QT_GUICONSTANTS_H
|
||||||
#define GUICONSTANTS_H
|
#define BITCOIN_QT_GUICONSTANTS_H
|
||||||
|
|
||||||
/* Milliseconds between model updates */
|
/* Milliseconds between model updates */
|
||||||
static const int MODEL_UPDATE_DELAY = 250;
|
static const int MODEL_UPDATE_DELAY = 250;
|
||||||
|
@ -52,4 +52,4 @@ static const int MAX_PAYMENT_REQUEST_SIZE = 50000; // bytes
|
||||||
#define QAPP_APP_NAME_DEFAULT "Bitcoin-Qt"
|
#define QAPP_APP_NAME_DEFAULT "Bitcoin-Qt"
|
||||||
#define QAPP_APP_NAME_TESTNET "Bitcoin-Qt-testnet"
|
#define QAPP_APP_NAME_TESTNET "Bitcoin-Qt-testnet"
|
||||||
|
|
||||||
#endif // GUICONSTANTS_H
|
#endif // BITCOIN_QT_GUICONSTANTS_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef GUIUTIL_H
|
#ifndef BITCOIN_QT_GUIUTIL_H
|
||||||
#define GUIUTIL_H
|
#define BITCOIN_QT_GUIUTIL_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
|
|
||||||
|
@ -188,4 +188,4 @@ namespace GUIUtil
|
||||||
QString formatPingTime(double dPingTime);
|
QString formatPingTime(double dPingTime);
|
||||||
} // namespace GUIUtil
|
} // namespace GUIUtil
|
||||||
|
|
||||||
#endif // GUIUTIL_H
|
#endif // BITCOIN_QT_GUIUTIL_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef INTRO_H
|
#ifndef BITCOIN_QT_INTRO_H
|
||||||
#define INTRO_H
|
#define BITCOIN_QT_INTRO_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QMutex>
|
#include <QMutex>
|
||||||
|
@ -70,4 +70,4 @@ private:
|
||||||
friend class FreespaceChecker;
|
friend class FreespaceChecker;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // INTRO_H
|
#endif // BITCOIN_QT_INTRO_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef MACDOCKICONHANDLER_H
|
#ifndef BITCOIN_QT_MACDOCKICONHANDLER_H
|
||||||
#define MACDOCKICONHANDLER_H
|
#define BITCOIN_QT_MACDOCKICONHANDLER_H
|
||||||
|
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
@ -48,4 +48,4 @@ private:
|
||||||
QMainWindow *mainWindow;
|
QMainWindow *mainWindow;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // MACDOCKICONCLICKHANDLER_H
|
#endif // BITCOIN_QT_MACDOCKICONHANDLER_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef MACNOTIFICATIONHANDLER_H
|
#ifndef BITCOIN_QT_MACNOTIFICATIONHANDLER_H
|
||||||
#define MACNOTIFICATIONHANDLER_H
|
#define BITCOIN_QT_MACNOTIFICATIONHANDLER_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
|
@ -27,4 +27,4 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif // MACNOTIFICATIONHANDLER_H
|
#endif // BITCOIN_QT_MACNOTIFICATIONHANDLER_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_NETWORKSTYLE
|
#ifndef BITCOIN_QT_NETWORKSTYLE_H
|
||||||
#define H_NETWORKSTYLE
|
#define BITCOIN_QT_NETWORKSTYLE_H
|
||||||
|
|
||||||
#include <QIcon>
|
#include <QIcon>
|
||||||
#include <QPixmap>
|
#include <QPixmap>
|
||||||
|
@ -30,4 +30,4 @@ private:
|
||||||
QPixmap splashImage;
|
QPixmap splashImage;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // H_NETWORKSTYLE
|
#endif // BITCOIN_QT_NETWORKSTYLE_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef NOTIFICATOR_H
|
#ifndef BITCOIN_QT_NOTIFICATOR_H
|
||||||
#define NOTIFICATOR_H
|
#define BITCOIN_QT_NOTIFICATOR_H
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
#if defined(HAVE_CONFIG_H)
|
||||||
#include "config/bitcoin-config.h"
|
#include "config/bitcoin-config.h"
|
||||||
|
@ -77,4 +77,4 @@ private:
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // NOTIFICATOR_H
|
#endif // BITCOIN_QT_NOTIFICATOR_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef OPENURIDIALOG_H
|
#ifndef BITCOIN_QT_OPENURIDIALOG_H
|
||||||
#define OPENURIDIALOG_H
|
#define BITCOIN_QT_OPENURIDIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
@ -31,4 +31,4 @@ private:
|
||||||
Ui::OpenURIDialog *ui;
|
Ui::OpenURIDialog *ui;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // OPENURIDIALOG_H
|
#endif // BITCOIN_QT_OPENURIDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef OPTIONSDIALOG_H
|
#ifndef BITCOIN_QT_OPTIONSDIALOG_H
|
||||||
#define OPTIONSDIALOG_H
|
#define BITCOIN_QT_OPTIONSDIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
@ -59,4 +59,4 @@ private:
|
||||||
bool fProxyIpValid;
|
bool fProxyIpValid;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // OPTIONSDIALOG_H
|
#endif // BITCOIN_QT_OPTIONSDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef OPTIONSMODEL_H
|
#ifndef BITCOIN_QT_OPTIONSMODEL_H
|
||||||
#define OPTIONSMODEL_H
|
#define BITCOIN_QT_OPTIONSMODEL_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
|
|
||||||
|
@ -88,4 +88,4 @@ signals:
|
||||||
void coinControlFeaturesChanged(bool);
|
void coinControlFeaturesChanged(bool);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // OPTIONSMODEL_H
|
#endif // BITCOIN_QT_OPTIONSMODEL_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef OVERVIEWPAGE_H
|
#ifndef BITCOIN_QT_OVERVIEWPAGE_H
|
||||||
#define OVERVIEWPAGE_H
|
#define BITCOIN_QT_OVERVIEWPAGE_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
|
|
||||||
|
@ -63,4 +63,4 @@ private slots:
|
||||||
void updateWatchOnlyLabels(bool showWatchOnly);
|
void updateWatchOnlyLabels(bool showWatchOnly);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // OVERVIEWPAGE_H
|
#endif // BITCOIN_QT_OVERVIEWPAGE_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef PAYMENTREQUESTPLUS_H
|
#ifndef BITCOIN_QT_PAYMENTREQUESTPLUS_H
|
||||||
#define PAYMENTREQUESTPLUS_H
|
#define BITCOIN_QT_PAYMENTREQUESTPLUS_H
|
||||||
|
|
||||||
#include "paymentrequest.pb.h"
|
#include "paymentrequest.pb.h"
|
||||||
|
|
||||||
|
@ -42,5 +42,4 @@ private:
|
||||||
payments::PaymentDetails details;
|
payments::PaymentDetails details;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PAYMENTREQUESTPLUS_H
|
#endif // BITCOIN_QT_PAYMENTREQUESTPLUS_H
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef PAYMENTSERVER_H
|
#ifndef BITCOIN_QT_PAYMENTSERVER_H
|
||||||
#define PAYMENTSERVER_H
|
#define BITCOIN_QT_PAYMENTSERVER_H
|
||||||
|
|
||||||
// This class handles payment requests from clicking on
|
// This class handles payment requests from clicking on
|
||||||
// bitcoin: URIs
|
// bitcoin: URIs
|
||||||
//
|
//
|
||||||
|
@ -135,4 +136,4 @@ private:
|
||||||
OptionsModel *optionsModel;
|
OptionsModel *optionsModel;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PAYMENTSERVER_H
|
#endif // BITCOIN_QT_PAYMENTSERVER_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef PEERTABLEMODEL_H
|
#ifndef BITCOIN_QT_PEERTABLEMODEL_H
|
||||||
#define PEERTABLEMODEL_H
|
#define BITCOIN_QT_PEERTABLEMODEL_H
|
||||||
|
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "net.h"
|
#include "net.h"
|
||||||
|
@ -78,4 +78,4 @@ private:
|
||||||
QTimer *timer;
|
QTimer *timer;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PEERTABLEMODEL_H
|
#endif // BITCOIN_QT_PEERTABLEMODEL_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef QVALIDATEDLINEEDIT_H
|
#ifndef BITCOIN_QT_QVALIDATEDLINEEDIT_H
|
||||||
#define QVALIDATEDLINEEDIT_H
|
#define BITCOIN_QT_QVALIDATEDLINEEDIT_H
|
||||||
|
|
||||||
#include <QLineEdit>
|
#include <QLineEdit>
|
||||||
|
|
||||||
|
@ -36,4 +36,4 @@ private slots:
|
||||||
void checkValidity();
|
void checkValidity();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // QVALIDATEDLINEEDIT_H
|
#endif // BITCOIN_QT_QVALIDATEDLINEEDIT_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef QVALUECOMBOBOX_H
|
#ifndef BITCOIN_QT_QVALUECOMBOBOX_H
|
||||||
#define QVALUECOMBOBOX_H
|
#define BITCOIN_QT_QVALUECOMBOBOX_H
|
||||||
|
|
||||||
#include <QComboBox>
|
#include <QComboBox>
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
|
@ -34,4 +34,4 @@ private slots:
|
||||||
void handleSelectionChanged(int idx);
|
void handleSelectionChanged(int idx);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // QVALUECOMBOBOX_H
|
#endif // BITCOIN_QT_QVALUECOMBOBOX_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef RECEIVECOINSDIALOG_H
|
#ifndef BITCOIN_QT_RECEIVECOINSDIALOG_H
|
||||||
#define RECEIVECOINSDIALOG_H
|
#define BITCOIN_QT_RECEIVECOINSDIALOG_H
|
||||||
|
|
||||||
#include "guiutil.h"
|
#include "guiutil.h"
|
||||||
|
|
||||||
|
@ -73,4 +73,4 @@ private slots:
|
||||||
void copyAmount();
|
void copyAmount();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // RECEIVECOINSDIALOG_H
|
#endif // BITCOIN_QT_RECEIVECOINSDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef QRCODEDIALOG_H
|
#ifndef BITCOIN_QT_RECEIVEREQUESTDIALOG_H
|
||||||
#define QRCODEDIALOG_H
|
#define BITCOIN_QT_RECEIVEREQUESTDIALOG_H
|
||||||
|
|
||||||
#include "walletmodel.h"
|
#include "walletmodel.h"
|
||||||
|
|
||||||
|
@ -67,4 +67,4 @@ private:
|
||||||
SendCoinsRecipient info;
|
SendCoinsRecipient info;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // QRCODEDIALOG_H
|
#endif // BITCOIN_QT_RECEIVEREQUESTDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef RECENTREQUESTSTABLEMODEL_H
|
#ifndef BITCOIN_QT_RECENTREQUESTSTABLEMODEL_H
|
||||||
#define RECENTREQUESTSTABLEMODEL_H
|
#define BITCOIN_QT_RECENTREQUESTSTABLEMODEL_H
|
||||||
|
|
||||||
#include "walletmodel.h"
|
#include "walletmodel.h"
|
||||||
|
|
||||||
|
@ -105,4 +105,4 @@ private:
|
||||||
QString getAmountTitle();
|
QString getAmountTitle();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // BITCOIN_QT_RECENTREQUESTSTABLEMODEL_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef RPCCONSOLE_H
|
#ifndef BITCOIN_QT_RPCCONSOLE_H
|
||||||
#define RPCCONSOLE_H
|
#define BITCOIN_QT_RPCCONSOLE_H
|
||||||
|
|
||||||
#include "guiutil.h"
|
#include "guiutil.h"
|
||||||
#include "peertablemodel.h"
|
#include "peertablemodel.h"
|
||||||
|
@ -100,4 +100,4 @@ private:
|
||||||
NodeId cachedNodeid;
|
NodeId cachedNodeid;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // RPCCONSOLE_H
|
#endif // BITCOIN_QT_RPCCONSOLE_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef SENDCOINSDIALOG_H
|
#ifndef BITCOIN_QT_SENDCOINSDIALOG_H
|
||||||
#define SENDCOINSDIALOG_H
|
#define BITCOIN_QT_SENDCOINSDIALOG_H
|
||||||
|
|
||||||
#include "walletmodel.h"
|
#include "walletmodel.h"
|
||||||
|
|
||||||
|
@ -83,4 +83,4 @@ signals:
|
||||||
void message(const QString &title, const QString &message, unsigned int style);
|
void message(const QString &title, const QString &message, unsigned int style);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // SENDCOINSDIALOG_H
|
#endif // BITCOIN_QT_SENDCOINSDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef SENDCOINSENTRY_H
|
#ifndef BITCOIN_QT_SENDCOINSENTRY_H
|
||||||
#define SENDCOINSENTRY_H
|
#define BITCOIN_QT_SENDCOINSENTRY_H
|
||||||
|
|
||||||
#include "walletmodel.h"
|
#include "walletmodel.h"
|
||||||
|
|
||||||
|
@ -67,4 +67,4 @@ private:
|
||||||
bool updateLabel(const QString &address);
|
bool updateLabel(const QString &address);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // SENDCOINSENTRY_H
|
#endif // BITCOIN_QT_SENDCOINSENTRY_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef SIGNVERIFYMESSAGEDIALOG_H
|
#ifndef BITCOIN_QT_SIGNVERIFYMESSAGEDIALOG_H
|
||||||
#define SIGNVERIFYMESSAGEDIALOG_H
|
#define BITCOIN_QT_SIGNVERIFYMESSAGEDIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
@ -48,4 +48,4 @@ private slots:
|
||||||
void on_clearButton_VM_clicked();
|
void on_clearButton_VM_clicked();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // SIGNVERIFYMESSAGEDIALOG_H
|
#endif // BITCOIN_QT_SIGNVERIFYMESSAGEDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef SPLASHSCREEN_H
|
#ifndef BITCOIN_QT_SPLASHSCREEN_H
|
||||||
#define SPLASHSCREEN_H
|
#define BITCOIN_QT_SPLASHSCREEN_H
|
||||||
|
|
||||||
#include <QSplashScreen>
|
#include <QSplashScreen>
|
||||||
|
|
||||||
|
@ -46,4 +46,4 @@ private:
|
||||||
int curAlignment;
|
int curAlignment;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // SPLASHSCREEN_H
|
#endif // BITCOIN_QT_SPLASHSCREEN_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef PAYMENTSERVERTESTS_H
|
#ifndef BITCOIN_QT_TEST_PAYMENTSERVERTESTS_H
|
||||||
#define PAYMENTSERVERTESTS_H
|
#define BITCOIN_QT_TEST_PAYMENTSERVERTESTS_H
|
||||||
|
|
||||||
#include "../paymentserver.h"
|
#include "../paymentserver.h"
|
||||||
|
|
||||||
|
@ -32,4 +32,4 @@ public:
|
||||||
SendCoinsRecipient recipient;
|
SendCoinsRecipient recipient;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PAYMENTSERVERTESTS_H
|
#endif // BITCOIN_QT_TEST_PAYMENTSERVERTESTS_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef URITESTS_H
|
#ifndef BITCOIN_QT_TEST_URITESTS_H
|
||||||
#define URITESTS_H
|
#define BITCOIN_QT_TEST_URITESTS_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QTest>
|
#include <QTest>
|
||||||
|
@ -16,4 +16,4 @@ private slots:
|
||||||
void uriTests();
|
void uriTests();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // URITESTS_H
|
#endif // BITCOIN_QT_TEST_URITESTS_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef TRAFFICGRAPHWIDGET_H
|
#ifndef BITCOIN_QT_TRAFFICGRAPHWIDGET_H
|
||||||
#define TRAFFICGRAPHWIDGET_H
|
#define BITCOIN_QT_TRAFFICGRAPHWIDGET_H
|
||||||
|
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <QQueue>
|
#include <QQueue>
|
||||||
|
@ -45,4 +45,4 @@ private:
|
||||||
ClientModel *clientModel;
|
ClientModel *clientModel;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // TRAFFICGRAPHWIDGET_H
|
#endif // BITCOIN_QT_TRAFFICGRAPHWIDGET_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef TRANSACTIONDESC_H
|
#ifndef BITCOIN_QT_TRANSACTIONDESC_H
|
||||||
#define TRANSACTIONDESC_H
|
#define BITCOIN_QT_TRANSACTIONDESC_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
@ -28,4 +28,4 @@ private:
|
||||||
static QString FormatTxStatus(const CWalletTx& wtx);
|
static QString FormatTxStatus(const CWalletTx& wtx);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // TRANSACTIONDESC_H
|
#endif // BITCOIN_QT_TRANSACTIONDESC_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef TRANSACTIONDESCDIALOG_H
|
#ifndef BITCOIN_QT_TRANSACTIONDESCDIALOG_H
|
||||||
#define TRANSACTIONDESCDIALOG_H
|
#define BITCOIN_QT_TRANSACTIONDESCDIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
@ -28,4 +28,4 @@ private:
|
||||||
Ui::TransactionDescDialog *ui;
|
Ui::TransactionDescDialog *ui;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // TRANSACTIONDESCDIALOG_H
|
#endif // BITCOIN_QT_TRANSACTIONDESCDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef TRANSACTIONFILTERPROXY_H
|
#ifndef BITCOIN_QT_TRANSACTIONFILTERPROXY_H
|
||||||
#define TRANSACTIONFILTERPROXY_H
|
#define BITCOIN_QT_TRANSACTIONFILTERPROXY_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
|
|
||||||
|
@ -65,4 +65,4 @@ private:
|
||||||
bool showInactive;
|
bool showInactive;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // TRANSACTIONFILTERPROXY_H
|
#endif // BITCOIN_QT_TRANSACTIONFILTERPROXY_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef TRANSACTIONRECORD_H
|
#ifndef BITCOIN_QT_TRANSACTIONRECORD_H
|
||||||
#define TRANSACTIONRECORD_H
|
#define BITCOIN_QT_TRANSACTIONRECORD_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
#include "uint256.h"
|
#include "uint256.h"
|
||||||
|
@ -140,4 +140,4 @@ public:
|
||||||
bool statusUpdateNeeded();
|
bool statusUpdateNeeded();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // TRANSACTIONRECORD_H
|
#endif // BITCOIN_QT_TRANSACTIONRECORD_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef TRANSACTIONTABLEMODEL_H
|
#ifndef BITCOIN_QT_TRANSACTIONTABLEMODEL_H
|
||||||
#define TRANSACTIONTABLEMODEL_H
|
#define BITCOIN_QT_TRANSACTIONTABLEMODEL_H
|
||||||
|
|
||||||
#include "bitcoinunits.h"
|
#include "bitcoinunits.h"
|
||||||
|
|
||||||
|
@ -109,4 +109,4 @@ public slots:
|
||||||
friend class TransactionTablePriv;
|
friend class TransactionTablePriv;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // TRANSACTIONTABLEMODEL_H
|
#endif // BITCOIN_QT_TRANSACTIONTABLEMODEL_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef TRANSACTIONVIEW_H
|
#ifndef BITCOIN_QT_TRANSACTIONVIEW_H
|
||||||
#define TRANSACTIONVIEW_H
|
#define BITCOIN_QT_TRANSACTIONVIEW_H
|
||||||
|
|
||||||
#include "guiutil.h"
|
#include "guiutil.h"
|
||||||
|
|
||||||
|
@ -112,4 +112,4 @@ public slots:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // TRANSACTIONVIEW_H
|
#endif // BITCOIN_QT_TRANSACTIONVIEW_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef UTILITYDIALOG_H
|
#ifndef BITCOIN_QT_UTILITYDIALOG_H
|
||||||
#define UTILITYDIALOG_H
|
#define BITCOIN_QT_UTILITYDIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
@ -49,4 +49,4 @@ protected:
|
||||||
void closeEvent(QCloseEvent *event);
|
void closeEvent(QCloseEvent *event);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // UTILITYDIALOG_H
|
#endif // BITCOIN_QT_UTILITYDIALOG_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef WALLETFRAME_H
|
#ifndef BITCOIN_QT_WALLETFRAME_H
|
||||||
#define WALLETFRAME_H
|
#define BITCOIN_QT_WALLETFRAME_H
|
||||||
|
|
||||||
#include <QFrame>
|
#include <QFrame>
|
||||||
#include <QMap>
|
#include <QMap>
|
||||||
|
@ -77,4 +77,4 @@ public slots:
|
||||||
void usedReceivingAddresses();
|
void usedReceivingAddresses();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // WALLETFRAME_H
|
#endif // BITCOIN_QT_WALLETFRAME_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef WALLETMODEL_H
|
#ifndef BITCOIN_QT_WALLETMODEL_H
|
||||||
#define WALLETMODEL_H
|
#define BITCOIN_QT_WALLETMODEL_H
|
||||||
|
|
||||||
#include "paymentrequestplus.h"
|
#include "paymentrequestplus.h"
|
||||||
#include "walletmodeltransaction.h"
|
#include "walletmodeltransaction.h"
|
||||||
|
@ -261,4 +261,4 @@ public slots:
|
||||||
void pollBalanceChanged();
|
void pollBalanceChanged();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // WALLETMODEL_H
|
#endif // BITCOIN_QT_WALLETMODEL_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef WALLETMODELTRANSACTION_H
|
#ifndef BITCOIN_QT_WALLETMODELTRANSACTION_H
|
||||||
#define WALLETMODELTRANSACTION_H
|
#define BITCOIN_QT_WALLETMODELTRANSACTION_H
|
||||||
|
|
||||||
#include "walletmodel.h"
|
#include "walletmodel.h"
|
||||||
|
|
||||||
|
@ -41,4 +41,4 @@ private:
|
||||||
CAmount fee;
|
CAmount fee;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // WALLETMODELTRANSACTION_H
|
#endif // BITCOIN_QT_WALLETMODELTRANSACTION_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef WALLETVIEW_H
|
#ifndef BITCOIN_QT_WALLETVIEW_H
|
||||||
#define WALLETVIEW_H
|
#define BITCOIN_QT_WALLETVIEW_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
|
|
||||||
|
@ -116,4 +116,4 @@ signals:
|
||||||
void incomingTransaction(const QString& date, int unit, const CAmount& amount, const QString& type, const QString& address);
|
void incomingTransaction(const QString& date, int unit, const CAmount& amount, const QString& type, const QString& address);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // WALLETVIEW_H
|
#endif // BITCOIN_QT_WALLETVIEW_H
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef WINSHUTDOWNMONITOR_H
|
#ifndef BITCOIN_QT_WINSHUTDOWNMONITOR_H
|
||||||
#define WINSHUTDOWNMONITOR_H
|
#define BITCOIN_QT_WINSHUTDOWNMONITOR_H
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#include <QByteArray>
|
#include <QByteArray>
|
||||||
|
@ -26,4 +26,4 @@ public:
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // WINSHUTDOWNMONITOR_H
|
#endif // BITCOIN_QT_WINSHUTDOWNMONITOR_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef _BITCOINRPC_CLIENT_H_
|
#ifndef BITCOIN_RPCCLIENT_H
|
||||||
#define _BITCOINRPC_CLIENT_H_
|
#define BITCOIN_RPCCLIENT_H
|
||||||
|
|
||||||
#include "json/json_spirit_reader_template.h"
|
#include "json/json_spirit_reader_template.h"
|
||||||
#include "json/json_spirit_utils.h"
|
#include "json/json_spirit_utils.h"
|
||||||
|
@ -12,4 +12,4 @@
|
||||||
|
|
||||||
json_spirit::Array RPCConvertValues(const std::string& strMethod, const std::vector<std::string>& strParams);
|
json_spirit::Array RPCConvertValues(const std::string& strMethod, const std::vector<std::string>& strParams);
|
||||||
|
|
||||||
#endif // _BITCOINRPC_CLIENT_H_
|
#endif // BITCOIN_RPCCLIENT_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef _BITCOINRPC_PROTOCOL_H_
|
#ifndef BITCOIN_RPCPROTOCOL_H
|
||||||
#define _BITCOINRPC_PROTOCOL_H_
|
#define BITCOIN_RPCPROTOCOL_H
|
||||||
|
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
@ -164,4 +164,4 @@ json_spirit::Object JSONRPCReplyObj(const json_spirit::Value& result, const json
|
||||||
std::string JSONRPCReply(const json_spirit::Value& result, const json_spirit::Value& error, const json_spirit::Value& id);
|
std::string JSONRPCReply(const json_spirit::Value& result, const json_spirit::Value& error, const json_spirit::Value& id);
|
||||||
json_spirit::Object JSONRPCError(int code, const std::string& message);
|
json_spirit::Object JSONRPCError(int code, const std::string& message);
|
||||||
|
|
||||||
#endif // _BITCOINRPC_PROTOCOL_H_
|
#endif // BITCOIN_RPCPROTOCOL_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef _BITCOINRPC_SERVER_H_
|
#ifndef BITCOIN_RPCSERVER_H
|
||||||
#define _BITCOINRPC_SERVER_H_
|
#define BITCOIN_RPCSERVER_H
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
#include "rpcprotocol.h"
|
#include "rpcprotocol.h"
|
||||||
|
@ -211,4 +211,4 @@ extern json_spirit::Value gettxout(const json_spirit::Array& params, bool fHelp)
|
||||||
extern json_spirit::Value verifychain(const json_spirit::Array& params, bool fHelp);
|
extern json_spirit::Value verifychain(const json_spirit::Array& params, bool fHelp);
|
||||||
extern json_spirit::Value getchaintips(const json_spirit::Array& params, bool fHelp);
|
extern json_spirit::Value getchaintips(const json_spirit::Array& params, bool fHelp);
|
||||||
|
|
||||||
#endif // _BITCOINRPC_SERVER_H_
|
#endif // BITCOIN_RPCSERVER_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_SCRIPT_INTERPRETER
|
#ifndef BITCOIN_SCRIPT_INTERPRETER_H
|
||||||
#define H_BITCOIN_SCRIPT_INTERPRETER
|
#define BITCOIN_SCRIPT_INTERPRETER_H
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
@ -88,4 +88,4 @@ public:
|
||||||
bool EvalScript(std::vector<std::vector<unsigned char> >& stack, const CScript& script, unsigned int flags, const BaseSignatureChecker& checker);
|
bool EvalScript(std::vector<std::vector<unsigned char> >& stack, const CScript& script, unsigned int flags, const BaseSignatureChecker& checker);
|
||||||
bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, unsigned int flags, const BaseSignatureChecker& checker);
|
bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, unsigned int flags, const BaseSignatureChecker& checker);
|
||||||
|
|
||||||
#endif // H_BITCOIN_SCRIPT_INTERPRETER
|
#endif // BITCOIN_SCRIPT_INTERPRETER_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_SCRIPT
|
#ifndef BITCOIN_SCRIPT_SCRIPT_H
|
||||||
#define H_BITCOIN_SCRIPT
|
#define BITCOIN_SCRIPT_SCRIPT_H
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <climits>
|
#include <climits>
|
||||||
|
@ -592,4 +592,4 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // H_BITCOIN_SCRIPT
|
#endif // BITCOIN_SCRIPT_SCRIPT_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_SCRIPT_SIGCACHE
|
#ifndef BITCOIN_SCRIPT_SIGCACHE_H
|
||||||
#define H_BITCOIN_SCRIPT_SIGCACHE
|
#define BITCOIN_SCRIPT_SIGCACHE_H
|
||||||
|
|
||||||
#include "script/interpreter.h"
|
#include "script/interpreter.h"
|
||||||
|
|
||||||
|
@ -23,4 +23,4 @@ public:
|
||||||
bool VerifySignature(const std::vector<unsigned char>& vchSig, const CPubKey& vchPubKey, const uint256& sighash) const;
|
bool VerifySignature(const std::vector<unsigned char>& vchSig, const CPubKey& vchPubKey, const uint256& sighash) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // H_BITCOIN_SCRIPT_SIGCACHE
|
#endif // BITCOIN_SCRIPT_SIGCACHE_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_SCRIPT_SIGN
|
#ifndef BITCOIN_SCRIPT_SIGN_H
|
||||||
#define H_BITCOIN_SCRIPT_SIGN
|
#define BITCOIN_SCRIPT_SIGN_H
|
||||||
|
|
||||||
#include "script/interpreter.h"
|
#include "script/interpreter.h"
|
||||||
|
|
||||||
|
@ -21,4 +21,4 @@ bool SignSignature(const CKeyStore& keystore, const CTransaction& txFrom, CMutab
|
||||||
// combine them intelligently and return the result.
|
// combine them intelligently and return the result.
|
||||||
CScript CombineSignatures(CScript scriptPubKey, const CTransaction& txTo, unsigned int nIn, const CScript& scriptSig1, const CScript& scriptSig2);
|
CScript CombineSignatures(CScript scriptPubKey, const CTransaction& txTo, unsigned int nIn, const CScript& scriptSig1, const CScript& scriptSig2);
|
||||||
|
|
||||||
#endif // H_BITCOIN_SCRIPT_SIGN
|
#endif // BITCOIN_SCRIPT_SIGN_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_SCRIPT_STANDARD
|
#ifndef BITCOIN_SCRIPT_STANDARD_H
|
||||||
#define H_BITCOIN_SCRIPT_STANDARD
|
#define BITCOIN_SCRIPT_STANDARD_H
|
||||||
|
|
||||||
#include "uint256.h"
|
#include "uint256.h"
|
||||||
#include "script/interpreter.h"
|
#include "script/interpreter.h"
|
||||||
|
@ -84,4 +84,4 @@ bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, std::
|
||||||
CScript GetScriptForDestination(const CTxDestination& dest);
|
CScript GetScriptForDestination(const CTxDestination& dest);
|
||||||
CScript GetScriptForMultisig(int nRequired, const std::vector<CPubKey>& keys);
|
CScript GetScriptForMultisig(int nRequired, const std::vector<CPubKey>& keys);
|
||||||
|
|
||||||
#endif // H_BITCOIN_SCRIPT_STANDARD
|
#endif // BITCOIN_SCRIPT_STANDARD_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_BIGNUM_H
|
#ifndef BITCOIN_TEST_BIGNUM_H
|
||||||
#define BITCOIN_BIGNUM_H
|
#define BITCOIN_TEST_BIGNUM_H
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
@ -177,4 +177,4 @@ inline bool operator>=(const CBigNum& a, const CBigNum& b) { return (BN_cmp(&a,
|
||||||
inline bool operator<(const CBigNum& a, const CBigNum& b) { return (BN_cmp(&a, &b) < 0); }
|
inline bool operator<(const CBigNum& a, const CBigNum& b) { return (BN_cmp(&a, &b) < 0); }
|
||||||
inline bool operator>(const CBigNum& a, const CBigNum& b) { return (BN_cmp(&a, &b) > 0); }
|
inline bool operator>(const CBigNum& a, const CBigNum& b) { return (BN_cmp(&a, &b) > 0); }
|
||||||
|
|
||||||
#endif
|
#endif // BITCOIN_TEST_BIGNUM_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_TXDB_LEVELDB_H
|
#ifndef BITCOIN_TXDB_H
|
||||||
#define BITCOIN_TXDB_LEVELDB_H
|
#define BITCOIN_TXDB_H
|
||||||
|
|
||||||
#include "leveldbwrapper.h"
|
#include "leveldbwrapper.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
|
@ -62,4 +62,4 @@ public:
|
||||||
bool LoadBlockIndexGuts();
|
bool LoadBlockIndexGuts();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BITCOIN_TXDB_LEVELDB_H
|
#endif // BITCOIN_TXDB_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_TXUNDO
|
#ifndef BITCOIN_UNDO_H
|
||||||
#define H_BITCOIN_TXUNDO
|
#define BITCOIN_UNDO_H
|
||||||
|
|
||||||
#include "compressor.h"
|
#include "compressor.h"
|
||||||
#include "core/transaction.h"
|
#include "core/transaction.h"
|
||||||
|
@ -68,4 +68,4 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // H_BITCOIN_TXUNDO
|
#endif // BITCOIN_UNDO_H
|
||||||
|
|
|
@ -35,8 +35,8 @@ static void initJsonEscape()
|
||||||
static void outputEscape()
|
static void outputEscape()
|
||||||
{
|
{
|
||||||
printf( "// Automatically generated file. Do not modify.\n"
|
printf( "// Automatically generated file. Do not modify.\n"
|
||||||
"#ifndef __UNIVALUE_ESCAPES_H__\n"
|
"#ifndef BITCOIN_UNIVALUE_UNIVALUE_ESCAPES_H\n"
|
||||||
"#define __UNIVALUE_ESCAPES_H__\n"
|
"#define BITCOIN_UNIVALUE_UNIVALUE_ESCAPES_H\n"
|
||||||
"static const char *escapes[256] = {\n");
|
"static const char *escapes[256] = {\n");
|
||||||
|
|
||||||
for (unsigned int i = 0; i < 256; i++) {
|
for (unsigned int i = 0; i < 256; i++) {
|
||||||
|
@ -66,7 +66,7 @@ static void outputEscape()
|
||||||
}
|
}
|
||||||
|
|
||||||
printf( "};\n"
|
printf( "};\n"
|
||||||
"#endif // __UNIVALUE_ESCAPES_H__\n");
|
"#endif // BITCOIN_UNIVALUE_UNIVALUE_ESCAPES_H\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
int main (int argc, char *argv[])
|
int main (int argc, char *argv[])
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef __UNIVALUE_H__
|
#ifndef BITCOIN_UNIVALUE_UNIVALUE_H
|
||||||
#define __UNIVALUE_H__
|
#define BITCOIN_UNIVALUE_UNIVALUE_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -152,4 +152,4 @@ extern enum jtokentype getJsonToken(std::string& tokenVal,
|
||||||
unsigned int& consumed, const char *raw);
|
unsigned int& consumed, const char *raw);
|
||||||
extern const char *uvTypeName(UniValue::VType t);
|
extern const char *uvTypeName(UniValue::VType t);
|
||||||
|
|
||||||
#endif // __UNIVALUE_H__
|
#endif // BITCOIN_UNIVALUE_UNIVALUE_H
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Automatically generated file. Do not modify.
|
// Automatically generated file. Do not modify.
|
||||||
#ifndef __UNIVALUE_ESCAPES_H__
|
#ifndef BITCOIN_UNIVALUE_UNIVALUE_ESCAPES_H
|
||||||
#define __UNIVALUE_ESCAPES_H__
|
#define BITCOIN_UNIVALUE_UNIVALUE_ESCAPES_H
|
||||||
static const char *escapes[256] = {
|
static const char *escapes[256] = {
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -259,4 +259,4 @@ static const char *escapes[256] = {
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
#endif // __UNIVALUE_ESCAPES_H__
|
#endif // BITCOIN_UNIVALUE_UNIVALUE_ESCAPES_H
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_WALLET_ISMINE
|
#ifndef BITCOIN_WALLET_ISMINE_H
|
||||||
#define H_BITCOIN_WALLET_ISMINE
|
#define BITCOIN_WALLET_ISMINE_H
|
||||||
|
|
||||||
#include "key.h"
|
#include "key.h"
|
||||||
#include "script/standard.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 CScript& scriptPubKey);
|
||||||
isminetype IsMine(const CKeyStore& keystore, const CTxDestination& dest);
|
isminetype IsMine(const CKeyStore& keystore, const CTxDestination& dest);
|
||||||
|
|
||||||
#endif // H_BITCOIN_WALLET_ISMINE
|
#endif // BITCOIN_WALLET_ISMINE_H
|
||||||
|
|
Loading…
Reference in a new issue