repo_id
stringlengths
0
42
file_path
stringlengths
15
97
content
stringlengths
2
2.41M
__index_level_0__
int64
0
0
bitcoin
bitcoin/src/addrman_impl.h
// Copyright (c) 2021-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_ADDRMAN_IMPL_H #define BITCOIN_ADDRMAN_IMPL_H #include <logging.h> #include <logging/timer.h> #include <neta...
0
bitcoin
bitcoin/src/Makefile.test_fuzz.include
# Copyright (c) 2013-2020 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. LIBTEST_FUZZ=libtest_fuzz.a EXTRA_LIBRARIES += \ $(LIBTEST_FUZZ) TEST_FUZZ_H = \ test/fuzz/fuzz.h \ test/fuzz/Fuzz...
0
bitcoin
bitcoin/src/attributes.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_ATTRIBUTES_H #define BITCOIN_ATTRIBUTES_H #if defined(__clang__)...
0
bitcoin
bitcoin/src/timedata.h
// Copyright (c) 2014-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_TIMEDATA_H #define BITCOIN_TIMEDATA_H #include <util/time.h> #include <algorithm> #include <cassert> #inclu...
0
bitcoin
bitcoin/src/addresstype.cpp
// Copyright (c) 2023 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or https://www.opensource.org/licenses/mit-license.php. #include <addresstype.h> #include <crypto/sha256.h> #include <hash.h> #include <pubkey.h> #include <script/script.h> #include <s...
0
bitcoin
bitcoin/src/deploymentstatus.h
// Copyright (c) 2020-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_DEPLOYMENTSTATUS_H #define BITCOIN_DEPLOYMENTSTATUS_H #include <chain.h> #include <versionbits.h> #include ...
0
bitcoin
bitcoin/src/.bear-tidy-config
{ "output": { "content": { "include_only_existing_source": true, "paths_to_include": [], "paths_to_exclude": [ "src/crc32c", "src/crypto/ctaes", "src/leveldb", "src/minisketch", "src/bench/nanobench.cpp", "src/bench/nanobench.h", "src/secp2...
0
bitcoin
bitcoin/src/txrequest.cpp
// Copyright (c) 2020-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <txrequest.h> #include <crypto/siphash.h> #include <net.h> #include <primitives/transaction.h> #include <random.h> ...
0
bitcoin
bitcoin/src/httpserver.cpp
// Copyright (c) 2015-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include <config/bitcoin-config.h> #endif #include <httpserver.h> #include <chainparamsbase.h> #...
0
bitcoin
bitcoin/src/logging.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_LOGGING_H #define BITCOIN_LOGGING_H #include <threadsafety.h> #i...
0
bitcoin
bitcoin/src/merkleblock.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <merkleblock.h> #include <hash.h> #include <consensus/consensus.h> st...
0
bitcoin
bitcoin/src/chainparamsbase.cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <chainparamsbase.h> #include <common/args.h> #include <tinyformat.h> #includ...
0
bitcoin
bitcoin/src/net_processing.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NET_PROCESSING_H #define BITCOIN_NET_PROCESSING_H #include <net....
0
bitcoin
bitcoin/src/httpserver.h
// Copyright (c) 2015-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_HTTPSERVER_H #define BITCOIN_HTTPSERVER_H #include <functional> #include <optional> #include <string> names...
0
bitcoin
bitcoin/src/txmempool.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <txmempool.h> #include <chain.h> #include <coins.h> #include <common/sy...
0
bitcoin
bitcoin/src/net.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include <config/bitcoin-config.h> #endif #include <n...
0
bitcoin
bitcoin/src/scheduler.cpp
// Copyright (c) 2015-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <scheduler.h> #include <sync.h> #include <util/time.h> #include <cassert> #include <functional> #include <utility>...
0
bitcoin
bitcoin/src/validationinterface.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_VALIDATIONINTERFACE_H #define BITCOIN_VALIDATIONINTERFACE_H #inc...
0
bitcoin
bitcoin/src/compressor.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <compressor.h> #include <pubkey.h> #include <script/script.h> /* * Th...
0
bitcoin
bitcoin/src/arith_uint256.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <arith_uint256.h> #include <uint256.h> #include <crypto/common.h> #inc...
0
bitcoin
bitcoin/src/key_io.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEY_IO_H #define BITCOIN_KEY_IO_H #include <addresstype.h> #incl...
0
bitcoin
bitcoin/src/chainparamsbase.h
// Copyright (c) 2014-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CHAINPARAMSBASE_H #define BITCOIN_CHAINPARAMSBASE_H #include <util/chaintype.h> #include <memory> #include ...
0
bitcoin
bitcoin/src/pubkey.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Copyright (c) 2017 The Zcash developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_PUBKEY_H #define BITCO...
0
bitcoin
bitcoin/src/headerssync.cpp
// Copyright (c) 2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <headerssync.h> #include <logging.h> #include <pow.h> #include <timedata.h> #include <util/check.h> #include <util/vector...
0
bitcoin
bitcoin/src/bitcoin-tx.cpp
// Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include <config/bitcoin-config.h> #endif #include <chainparamsbase.h> #include <clientversion.h>...
0
bitcoin
bitcoin/src/mapport.h
// Copyright (c) 2011-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_MAPPORT_H #define BITCOIN_MAPPORT_H static constexpr bool DEFAULT_UPNP = false; static constexpr bool DEFAU...
0
bitcoin
bitcoin/src/Makefile.am
# Copyright (c) 2013-2016 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. # Pattern rule to print variables, e.g. make print-top_srcdir print-%: FORCE @echo '$*'='$($*)' DIST_SUBDIRS = secp256k1 AM_L...
0
bitcoin
bitcoin/src/Makefile.bench.include
# Copyright (c) 2015-2016 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. bin_PROGRAMS += bench/bench_bitcoin BENCH_SRCDIR = bench BENCH_BINARY = bench/bench_bitcoin$(EXEEXT) RAW_BENCH_FILES = \ benc...
0
bitcoin
bitcoin/src/core_memusage.h
// Copyright (c) 2015-2018 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CORE_MEMUSAGE_H #define BITCOIN_CORE_MEMUSAGE_H #include <primitives/transaction.h> #include <primitives/blo...
0
bitcoin
bitcoin/src/net_processing.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <net_processing.h> #include <addrman.h> #include <banman.h> #include <b...
0
bitcoin
bitcoin/src/Makefile.univalue.include
include univalue/sources.mk LIBUNIVALUE = libunivalue.la noinst_LTLIBRARIES += $(LIBUNIVALUE) libunivalue_la_SOURCES = $(UNIVALUE_LIB_SOURCES_INT) $(UNIVALUE_DIST_HEADERS_INT) $(UNIVALUE_LIB_HEADERS_INT) $(UNIVALUE_TEST_FILES_INT) libunivalue_la_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/$(UNIVALUE_INCLUDE_DIR_INT)
0
bitcoin
bitcoin/src/randomenv.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_RANDOMENV_H #define BITCOIN_RANDOMENV_H #include <crypto/sha512....
0
bitcoin
bitcoin/src/deploymentinfo.cpp
// Copyright (c) 2016-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <deploymentinfo.h> #include <consensus/params.h> #include <string_view> const struct VBDeploymentInfo VersionBits...
0
bitcoin
bitcoin/src/addrdb.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <addrdb.h> #include <addrman.h> #include <chainparams.h> #include <clie...
0
bitcoin
bitcoin/src/outputtype.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <outputtype.h> #include <pubkey.h> #include <script/script.h> #include ...
0
bitcoin
bitcoin/src/netaddress.h
// Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NETADDRESS_H #define BITCOIN_NETADDRESS_H #if defined(HAVE_CONFIG_H) #include <config/bitcoin-config.h> #end...
0
bitcoin
bitcoin/src/txrequest.h
// Copyright (c) 2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_TXREQUEST_H #define BITCOIN_TXREQUEST_H #include <primitives/transaction.h> #include <net.h> // For NodeId #inclu...
0
bitcoin
bitcoin/src/uint256.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UINT256_H #define BITCOIN_UINT256_H #include <crypto/common.h> #...
0
bitcoin
bitcoin/src/chain.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <chain.h> #include <tinyformat.h> #include <util/time.h> std::string CB...
0
bitcoin
bitcoin/src/netaddress.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <netaddress.h> #include <crypto/common.h> #include <crypto/sha3.h> #inc...
0
bitcoin
bitcoin/src/coins.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_COINS_H #define BITCOIN_COINS_H #include <compressor.h> #include...
0
bitcoin
bitcoin/src/dummywallet.cpp
// Copyright (c) 2018-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <common/args.h> #include <logging.h> #include <walletinitinterface.h> class ArgsManager; namespace interfaces { cl...
0
bitcoin
bitcoin/src/netgroup.h
// Copyright (c) 2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NETGROUP_H #define BITCOIN_NETGROUP_H #include <netaddress.h> #include <uint256.h> #include <vector> /** * Net...
0
bitcoin
bitcoin/src/blockencodings.h
// Copyright (c) 2016-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_BLOCKENCODINGS_H #define BITCOIN_BLOCKENCODINGS_H #include <primitives/block.h> #include <functional> clas...
0
bitcoin
bitcoin/src/blockfilter.cpp
// Copyright (c) 2018-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <mutex> #include <set> #include <blockfilter.h> #include <crypto/siphash.h> #include <hash.h> #include <primitives/...
0
bitcoin
bitcoin/src/netbase.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <netbase.h> #include <compat/compat.h> #include <logging.h> #include <s...
0
bitcoin
bitcoin/src/deploymentinfo.h
// Copyright (c) 2016-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_DEPLOYMENTINFO_H #define BITCOIN_DEPLOYMENTINFO_H #include <consensus/params.h> #include <optional> #includ...
0
bitcoin
bitcoin/src/cuckoocache.h
// Copyright (c) 2016 Jeremy Rubin // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CUCKOOCACHE_H #define BITCOIN_CUCKOOCACHE_H #include <util/fastrange.h> #include <algorithm> // std::find #include <array> #inc...
0
bitcoin
bitcoin/src/.clang-format
Language: Cpp AccessModifierOffset: -4 AlignAfterOpenBracket: true AlignEscapedNewlinesLeft: true AlignTrailingComments: true AllowAllParametersOfDeclarationOnNextLine: true AllowShortBlocksOnASingleLine: false AllowShortCaseLabelsOnASingleLine: true AllowShortFunctionsOnASingleLine: All AllowShortIfStatementsOn...
0
bitcoin
bitcoin/src/undo.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UNDO_H #define BITCOIN_UNDO_H #include <coins.h> #include <compr...
0
bitcoin
bitcoin/src/bech32.cpp
// Copyright (c) 2017, 2021 Pieter Wuille // Copyright (c) 2021-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <bech32.h> #include <util/vector.h> #include <array> #include <assert.h> ...
0
bitcoin
bitcoin/src/addrdb.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_ADDRDB_H #define BITCOIN_ADDRDB_H #include <net_types.h> #includ...
0
bitcoin
bitcoin/src/validation.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_VALIDATION_H #define BITCOIN_VALIDATION_H #if defined(HAVE_CONFI...
0
bitcoin
bitcoin/src/bip324.cpp
// Copyright (c) 2023 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <bip324.h> #include <chainparams.h> #include <crypto/chacha20.h> #include <crypto/chacha20poly1305.h> #include <crypto/h...
0
bitcoin
bitcoin/src/txorphanage.cpp
// Copyright (c) 2021-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <txorphanage.h> #include <consensus/validation.h> #include <logging.h> #include <policy/policy.h> #include <primiti...
0
bitcoin
bitcoin/src/arith_uint256.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_ARITH_UINT256_H #define BITCOIN_ARITH_UINT256_H #include <cstdin...
0
bitcoin
bitcoin/src/Makefile.qttest.include
# Copyright (c) 2013-2016 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. bin_PROGRAMS += qt/test/test_bitcoin-qt TESTS += qt/test/test_bitcoin-qt TEST_QT_MOC_CPP = \ qt/test/moc_apptests.cpp \ qt/...
0
bitcoin
bitcoin/src/core_read.cpp
// Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <core_io.h> #include <primitives/block.h> #include <primitives/transaction.h> #include <script/script.h> #include <...
0
bitcoin
bitcoin/src/streams.cpp
// Copyright (c) 2009-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or https://opensource.org/license/mit/. #include <span.h> #include <streams.h> #include <array> std::size_t AutoFile::detail_fread(Span<std::byte> dst) { if (!m_file) thro...
0
bitcoin
bitcoin/src/txdb.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <txdb.h> #include <coins.h> #include <dbwrapper.h> #include <logging.h>...
0
bitcoin
bitcoin/src/versionbits.h
// Copyright (c) 2016-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_VERSIONBITS_H #define BITCOIN_VERSIONBITS_H #include <chain.h> #include <sync.h> #include <map> /** What b...
0
bitcoin
bitcoin/src/clientversion.cpp
// Copyright (c) 2012-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <clientversion.h> #include <util/translation.h> #include <tinyformat.h> #include <sstream> #include <string> #incl...
0
bitcoin
bitcoin/src/uint256.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <uint256.h> #include <util/strencodings.h> template <unsigned int BITS...
0
bitcoin
bitcoin/src/chainparams.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CHAINPARAMS_H #define BITCOIN_CHAINPARAMS_H #include <kernel/cha...
0
bitcoin
bitcoin/src/span.h
// Copyright (c) 2018-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SPAN_H #define BITCOIN_SPAN_H #include <algorithm> #include <cassert> #include <cstddef> #include <span> #in...
0
bitcoin
bitcoin/src/protocol.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <protocol.h> #include <common/system.h> #include <atomic> static std:...
0
bitcoin
bitcoin/src/threadsafety.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_THREADSAFETY_H #define BITCOIN_THREADSAFETY_H #include <mutex> ...
0
bitcoin
bitcoin/src/walletinitinterface.h
// Copyright (c) 2017-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_WALLETINITINTERFACE_H #define BITCOIN_WALLETINITINTERFACE_H class ArgsManager; namespace node { struct Node...
0
bitcoin
bitcoin/src/bitcoin-util.cpp
// Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include <config/bitcoin-config.h> #endif #include <arith_uint256.h> #include <chain.h> #include ...
0
bitcoin
bitcoin/src/clientversion.h
// Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CLIENTVERSION_H #define BITCOIN_CLIENTVERSION_H #include <util/macros.h> #if defined(HAVE_CONFIG_H) #includ...
0
bitcoin
bitcoin/src/init.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include <config/bitcoin-config.h> #endif #include <i...
0
bitcoin
bitcoin/src/bitcoind-res.rc
#include <windows.h> // needed for VERSIONINFO #include "clientversion.h" // holds the needed client version information #define VER_PRODUCTVERSION CLIENT_VERSION_MAJOR,CLIENT_VERSION_MINOR,CLIENT_VERSION_BUILD #define VER_FILEVERSION VER_PRODUCTVERSION VS_VERSION_INFO VERSIONINFO FILEVER...
0
bitcoin
bitcoin/src/core_io.h
// Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CORE_IO_H #define BITCOIN_CORE_IO_H #include <consensus/amount.h> #include <util/result.h> #include <string...
0
bitcoin
bitcoin/src/torcontrol.cpp
// Copyright (c) 2015-2022 The Bitcoin Core developers // Copyright (c) 2017 The Zcash developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <torcontrol.h> #include <chainparams.h> #include <chainparamsbase.h> #in...
0
bitcoin
bitcoin/src/external_signer.cpp
// Copyright (c) 2018-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <external_signer.h> #include <chainparams.h> #include <common/run_command.h> #include <core_io.h> #include <psbt.h>...
0
bitcoin
bitcoin/src/hash.cpp
// Copyright (c) 2013-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <hash.h> #include <span.h> #include <crypto/common.h> #include <crypto/hmac_sha512.h> #include <string> inline uin...
0
bitcoin
bitcoin/src/txdb.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_TXDB_H #define BITCOIN_TXDB_H #include <coins.h> #include <dbwra...
0
bitcoin
bitcoin/src/net_permissions.cpp
// Copyright (c) 2009-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <common/system.h> #include <net_permissions.h> #include <netbase.h> #include <util/error.h> #include <util/translati...
0
bitcoin
bitcoin/src/mapport.cpp
// Copyright (c) 2011-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include <config/bitcoin-config.h> #endif #include <mapport.h> #include <clientversion.h> #inclu...
0
bitcoin
bitcoin/src/checkqueue.h
// Copyright (c) 2012-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CHECKQUEUE_H #define BITCOIN_CHECKQUEUE_H #include <sync.h> #include <tinyformat.h> #include <util/threadnam...
0
bitcoin
bitcoin/src/bitcoin-wallet-res.rc
#include <windows.h> // needed for VERSIONINFO #include "clientversion.h" // holds the needed client version information #define VER_PRODUCTVERSION CLIENT_VERSION_MAJOR,CLIENT_VERSION_MINOR,CLIENT_VERSION_BUILD #define VER_FILEVERSION VER_PRODUCTVERSION VS_VERSION_INFO VERSIONINFO FILEVER...
0
bitcoin
bitcoin/src/serialize.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SERIALIZE_H #define BITCOIN_SERIALIZE_H #include <attributes.h> ...
0
bitcoin
bitcoin/src/bitcoin-tx-res.rc
#include <windows.h> // needed for VERSIONINFO #include "clientversion.h" // holds the needed client version information #define VER_PRODUCTVERSION CLIENT_VERSION_MAJOR,CLIENT_VERSION_MINOR,CLIENT_VERSION_BUILD #define VER_FILEVERSION VER_PRODUCTVERSION VS_VERSION_INFO VERSIONINFO FILEVER...
0
bitcoin
bitcoin/src/init.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_INIT_H #define BITCOIN_INIT_H #include <any> #include <memory> #...
0
bitcoin
bitcoin/src/validationinterface.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <validationinterface.h> #include <attributes.h> #include <chain.h> #inc...
0
bitcoin
bitcoin/src/versionbits.cpp
// Copyright (c) 2016-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <consensus/params.h> #include <util/check.h> #include <versionbits.h> ThresholdState AbstractThresholdConditionChec...
0
bitcoin
bitcoin/src/compressor.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_COMPRESSOR_H #define BITCOIN_COMPRESSOR_H #include <prevector.h>...
0
bitcoin
bitcoin/src/pow.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_POW_H #define BITCOIN_POW_H #include <consensus/params.h> #incl...
0
bitcoin
bitcoin/src/external_signer.h
// Copyright (c) 2018-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_EXTERNAL_SIGNER_H #define BITCOIN_EXTERNAL_SIGNER_H #include <common/system.h> #include <univalue.h> #inclu...
0
bitcoin
bitcoin/src/key.cpp
// Copyright (c) 2009-2022 The Bitcoin Core developers // Copyright (c) 2017 The Zcash developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <key.h> #include <crypto/common.h> #include <crypto/hmac_sha512.h> #incl...
0
bitcoin
bitcoin/src/bech32.h
// Copyright (c) 2017, 2021 Pieter Wuille // Copyright (c) 2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. // Bech32 and Bech32m are string encoding formats used in newer // address types. The ou...
0
bitcoin
bitcoin/src/signet.cpp
// Copyright (c) 2019-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <signet.h> #include <array> #include <cstdint> #include <vector> #include <common/system.h> #include <consensus/me...
0
bitcoin
bitcoin/src/banman.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <banman.h> #include <common/system.h> #include <logging.h> #include <ne...
0
bitcoin
bitcoin/src/addrman.cpp
// Copyright (c) 2012 Pieter Wuille // Copyright (c) 2012-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <addrman.h> #include <addrman_impl.h> #include <hash.h> #include <logging.h> #i...
0
bitcoin
bitcoin/src/txmempool.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_TXMEMPOOL_H #define BITCOIN_TXMEMPOOL_H #include <coins.h> #incl...
0
bitcoin
bitcoin/src/hash.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_HASH_H #define BITCOIN_HASH_H #include <attributes.h> #include <...
0
bitcoin
bitcoin/src/dbwrapper.cpp
// Copyright (c) 2012-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <dbwrapper.h> #include <logging.h> #include <random.h> #include <serialize.h> #include <span.h> #include <streams.h...
0
bitcoin
bitcoin/src/random.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_RANDOM_H #define BITCOIN_RANDOM_H #include <crypto/chacha20.h> #...
0
bitcoin
bitcoin/src/net_types.cpp
// Copyright (c) 2021-2022 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <net_types.h> #include <logging.h> #include <netaddress.h> #include <netbase.h> #include <univalue.h> static const...
0
bitcoin
bitcoin/src/Makefile.leveldb.include
# Copyright (c) 2016 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. LIBLEVELDB_INT = leveldb/libleveldb.la LIBMEMENV_INT = leveldb/libmemenv.la noinst_LTLIBRARIES += $(LIBLEVELDB_INT) noinst_LTLIBRAR...
0