GitHub-Pull: #12859 Rebased-From: a5bca13
@ -15,6 +15,7 @@
#include <util.h>
#include <utilstrencodings.h>
#include <memory>
#include <stdio.h>
#include <event2/buffer.h>
@ -22,6 +22,7 @@
#include <utilmoneystr.h>
#include <boost/algorithm/string.hpp>
@ -11,6 +11,7 @@
#include <assert.h>
#include <chainparamsseeds.h>
@ -9,6 +9,7 @@
const std::string CBaseChainParams::MAIN = "main";
const std::string CBaseChainParams::TESTNET = "test";
@ -4,6 +4,7 @@
#include <dbwrapper.h>
#include <random.h>
#include <leveldb/cache.h>
@ -17,6 +17,8 @@
#include <crypto/hmac_sha256.h>
#include <boost/algorithm/string.hpp> // boost::trim
/** WWW-Authenticate to present with 401 Unauthorized response */
@ -13,6 +13,7 @@
#include <sync.h>
#include <ui_interface.h>
#include <stdlib.h>
#include <string.h>
@ -10,6 +10,7 @@
#include <map>
#include <set>
#include <vector>
#include <unordered_map>
@ -27,6 +27,7 @@
#include <validationinterface.h>
#include <algorithm>
#include <queue>
#include <utility>
@ -20,6 +20,7 @@
#ifdef WIN32
#else
@ -30,6 +30,8 @@
#if defined(NDEBUG)
# error "Bitcoin cannot be compiled without assertions."
#endif
@ -12,6 +12,7 @@
#include <string>
@ -7,6 +7,8 @@
#include <net.h>
#include <QAbstractTableModel>
#include <QStringList>
@ -36,6 +36,7 @@
#include <wallet/wallet.h>
#include <stdint.h>
#include <boost/thread.hpp>
@ -16,6 +16,7 @@
#include <cstdlib>
#include <openssl/x509_vfy.h>
@ -8,6 +8,8 @@
#include <net_processing.h> // For CNodeStateStats
@ -18,6 +18,8 @@
#include <qt/recentrequeststablemodel.h>
#include <qt/receiverequestdialog.h>
#include <QAbstractButton>
#include <QAction>
#include <QApplication>
#include <qt/walletmodel.h>
#include <QObject>
class SendCoinsRecipient;
@ -33,6 +33,7 @@
#include <boost/thread/thread.hpp> // boost::thread::interrupt
#include <mutex>
#include <condition_variable>
LockedPoolManager* LockedPoolManager::_instance = nullptr;
std::once_flag LockedPoolManager::init_flag;
#include <support/allocators/secure.h>
#include <test/test_bitcoin.h>
#include <boost/test/unit_test.hpp>
BOOST_FIXTURE_TEST_SUITE(allocator_tests, BasicTestingSetup)
// Test if a string consists entirely of null characters
@ -13,6 +13,8 @@
#include <chainparams.h>
class CAddrManSerializationMock : public CAddrMan
{
public:
@ -14,6 +14,8 @@
#include <txdb.h>
#include <txmempool.h>
extern uint256 insecure_rand_seed;
@ -25,6 +25,7 @@
#include <unistd.h>
enum TEST_ID {
@ -6,6 +6,8 @@
std::unique_ptr<CConnman> g_connman;
#include <chain.h>
@ -23,6 +23,7 @@
#include <atomic>
#include <exception>
@ -9,6 +9,8 @@
/** Testing setup and teardown for wallet.
*/
struct WalletTestingSetup: public TestingSetup {
#include <stdexcept>