├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── feature_request.yml │ ├── good_first_issue.yml │ └── gui_issue.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── configure-docker │ │ └── action.yml │ ├── configure-environment │ │ └── action.yml │ ├── restore-caches │ │ └── action.yml │ └── save-caches │ │ └── action.yml ├── ci-test-each-commit-exec.py └── workflows │ └── ci.yml ├── .gitignore ├── .python-version ├── .style.yapf ├── .tx └── config ├── CMakeLists.txt ├── CMakePresets.json ├── CONTRIBUTING.md ├── COPYING ├── INSTALL.md ├── README.md ├── SECURITY.md ├── base contract ├── ci ├── README.md ├── lint │ ├── 01_install.sh │ ├── 06_script.sh │ └── container-entrypoint.sh ├── lint_imagefile ├── retry │ ├── README.md │ └── retry ├── test │ ├── 00_setup_env.sh │ ├── 00_setup_env_arm.sh │ ├── 00_setup_env_i686_no_ipc.sh │ ├── 00_setup_env_mac_cross.sh │ ├── 00_setup_env_mac_native.sh │ ├── 00_setup_env_mac_native_fuzz.sh │ ├── 00_setup_env_native_asan.sh │ ├── 00_setup_env_native_centos.sh │ ├── 00_setup_env_native_fuzz.sh │ ├── 00_setup_env_native_fuzz_with_msan.sh │ ├── 00_setup_env_native_fuzz_with_valgrind.sh │ ├── 00_setup_env_native_msan.sh │ ├── 00_setup_env_native_nowallet_libbitcoinkernel.sh │ ├── 00_setup_env_native_previous_releases.sh │ ├── 00_setup_env_native_tidy.sh │ ├── 00_setup_env_native_tsan.sh │ ├── 00_setup_env_native_valgrind.sh │ ├── 00_setup_env_s390x.sh │ ├── 00_setup_env_win64.sh │ ├── 01_base_install.sh │ ├── 02_run_container.py │ ├── 02_run_container.sh │ ├── 03_test_script.sh │ ├── GetCMakeLogFiles.cmake │ └── wrap-valgrind.sh ├── test_imagefile └── test_run_all.sh ├── cmake ├── bitcoin-build-config.h.in ├── ccache.cmake ├── crc32c.cmake ├── introspection.cmake ├── leveldb.cmake ├── libmultiprocess.cmake ├── minisketch.cmake ├── module │ ├── AddBoostIfNeeded.cmake │ ├── AddWindowsResources.cmake │ ├── CheckLinkerSupportsPIE.cmake │ ├── CheckSourceCompilesWithFlags.cmake │ ├── FindLibevent.cmake │ ├── FindQRencode.cmake │ ├── FindQt.cmake │ ├── FindUSDT.cmake │ ├── FindZeroMQ.cmake │ ├── FlagsSummary.cmake │ ├── GenerateSetupNsi.cmake │ ├── GetTargetInterface.cmake │ ├── InstallBinaryComponent.cmake │ ├── Maintenance.cmake │ ├── ProcessConfigurations.cmake │ ├── TargetDataSources.cmake │ ├── TestAppendRequiredLibraries.cmake │ ├── TryAppendCXXFlags.cmake │ ├── TryAppendLinkerFlag.cmake │ └── WarnAboutGlobalProperties.cmake ├── script │ ├── Coverage.cmake │ ├── CoverageFuzz.cmake │ ├── CoverageInclude.cmake.in │ ├── GenerateBuildInfo.cmake │ ├── GenerateHeaderFromJson.cmake │ ├── GenerateHeaderFromRaw.cmake │ ├── cov_tool_wrapper.sh.in │ └── macos_zip.sh ├── secp256k1.cmake └── windows-app.manifest.in ├── contrib ├── README.md ├── asmap │ ├── README.md │ ├── asmap-tool.py │ └── asmap.py ├── completions │ ├── bash │ │ ├── bitcoin-cli.bash │ │ ├── bitcoin-tx.bash │ │ └── bitcoind.bash │ └── fish │ │ ├── bitcoin-cli.fish │ │ ├── bitcoin-qt.fish │ │ ├── bitcoin-tx.fish │ │ ├── bitcoin-util.fish │ │ ├── bitcoin-wallet.fish │ │ └── bitcoind.fish ├── debian │ └── copyright ├── devtools │ ├── README.md │ ├── bitcoin-tidy │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── bitcoin-tidy.cpp │ │ ├── example_nontrivial-threadlocal.cpp │ │ ├── nontrivial-threadlocal.cpp │ │ └── nontrivial-threadlocal.h │ ├── check-deps.sh │ ├── circular-dependencies.py │ ├── clang-format-diff.py │ ├── copyright_header.py │ ├── deterministic-fuzz-coverage │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── deterministic-unittest-coverage │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── gen-bitcoin-conf.sh │ ├── gen-manpages.py │ ├── headerssync-params.py │ ├── iwyu │ │ └── bitcoin.core.imp │ ├── split-debug.sh.in │ └── utils.py ├── filter-lcov.py ├── guix │ ├── INSTALL.md │ ├── README.md │ ├── guix-attest │ ├── guix-build │ ├── guix-clean │ ├── guix-codesign │ ├── guix-verify │ ├── libexec │ │ ├── build.sh │ │ ├── codesign.sh │ │ └── prelude.bash │ ├── manifest.scm │ ├── patches │ │ ├── binutils-unaligned-default.patch │ │ ├── gcc-remap-guix-store.patch │ │ ├── glibc-guix-prefix.patch │ │ ├── lief-scikit-0-9.patch │ │ ├── oscrypto-hard-code-openssl.patch │ │ └── winpthreads-remap-guix-store.patch │ ├── security-check.py │ └── symbol-check.py ├── init │ ├── README.md │ ├── bitcoind.conf │ ├── bitcoind.init │ ├── bitcoind.openrc │ ├── bitcoind.openrcconf │ ├── bitcoind.service │ └── org.bitcoin.bitcoind.plist ├── linearize │ ├── README.md │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── LICENSE │ ├── README.md │ ├── detached-sig-create.sh │ ├── gen-sdk │ └── macdeployqtplus ├── message-capture │ ├── message-capture-docs.md │ └── message-capture-parser.py ├── qos │ ├── README.md │ └── tc.sh ├── seeds │ ├── .gitignore │ ├── README.md │ ├── generate-seeds.py │ ├── makeseeds.py │ ├── nodes_main.txt │ ├── nodes_signet.txt │ ├── nodes_test.txt │ └── nodes_testnet4.txt ├── shell │ ├── git-utils.bash │ └── realpath.bash ├── signet │ ├── README.md │ ├── getcoins.py │ └── miner ├── testgen │ ├── README.md │ └── gen_key_io_test_vectors.py ├── tracing │ ├── README.md │ ├── connectblock_benchmark.bt │ ├── log_p2p_connections.bt │ ├── log_p2p_traffic.bt │ ├── log_raw_p2p_msgs.py │ ├── log_utxocache_flush.py │ ├── log_utxos.bt │ ├── mempool_monitor.py │ └── p2p_monitor.py ├── utxo-tools │ └── utxo_to_sqlite.py ├── valgrind.supp ├── verify-binaries │ ├── README.md │ ├── test.py │ └── verify.py ├── verify-commits │ ├── README.md │ ├── allow-incorrect-sha512-commits │ ├── allow-revsig-commits │ ├── allow-unclean-merge-commits │ ├── gpg.sh │ ├── pre-push-hook.sh │ ├── trusted-git-root │ ├── trusted-keys │ ├── trusted-sha512-root-commit │ └── verify-commits.py ├── windeploy │ ├── detached-sig-create.sh │ └── win-codesign.cert └── zmq │ └── zmq_sub.py ├── depends ├── .gitignore ├── Makefile ├── README.md ├── builders │ ├── darwin.mk │ ├── default.mk │ ├── freebsd.mk │ ├── linux.mk │ ├── netbsd.mk │ └── openbsd.mk ├── config.guess ├── config.sub ├── description.md ├── funcs.mk ├── gen_id ├── hosts │ ├── darwin.mk │ ├── default.mk │ ├── freebsd.mk │ ├── linux.mk │ ├── mingw32.mk │ ├── netbsd.mk │ └── openbsd.mk ├── packages.md ├── packages │ ├── boost.mk │ ├── capnp.mk │ ├── expat.mk │ ├── fontconfig.mk │ ├── freetype.mk │ ├── libXau.mk │ ├── libevent.mk │ ├── libxcb.mk │ ├── libxcb_util.mk │ ├── libxcb_util_cursor.mk │ ├── libxcb_util_image.mk │ ├── libxcb_util_keysyms.mk │ ├── libxcb_util_render.mk │ ├── libxcb_util_wm.mk │ ├── libxkbcommon.mk │ ├── native_capnp.mk │ ├── native_libmultiprocess.mk │ ├── native_qt.mk │ ├── packages.mk │ ├── qrencode.mk │ ├── qt.mk │ ├── qt_details.mk │ ├── sqlite.mk │ ├── systemtap.mk │ ├── xcb_proto.mk │ ├── xproto.mk │ └── zeromq.mk ├── patches │ ├── boost │ │ └── skip_compiled_targets.patch │ ├── expat │ │ └── cmake_minimum.patch │ ├── fontconfig │ │ └── gperf_header_regen.patch │ ├── freetype │ │ └── cmake_minimum.patch │ ├── libevent │ │ ├── cmake_fixups.patch │ │ ├── netbsd_fixup.patch │ │ └── winver_fixup.patch │ ├── libxcb │ │ └── remove_pthread_stubs.patch │ ├── qrencode │ │ └── cmake_fixups.patch │ ├── qt │ │ ├── dont_hardcode_pwd.patch │ │ ├── memory_resource.patch │ │ ├── qtbase-moc-ignore-gcc-macro.patch │ │ ├── qtbase_avoid_native_float16.patch │ │ ├── qtbase_avoid_qmain.patch │ │ ├── qtbase_platformsupport.patch │ │ ├── qtbase_plugins_cocoa.patch │ │ ├── qtbase_skip_tools.patch │ │ ├── qttools_skip_dependencies.patch │ │ └── rcc_hardcode_timestamp.patch │ ├── systemtap │ │ └── remove_SDT_ASM_SECTION_AUTOGROUP_SUPPORT_check.patch │ └── zeromq │ │ ├── builtin_sha1.patch │ │ ├── cacheline_undefined.patch │ │ ├── cmake_minimum.patch │ │ ├── fix_have_windows.patch │ │ ├── macos_mktemp_check.patch │ │ ├── no_librt.patch │ │ └── openbsd_kqueue_headers.patch └── toolchain.cmake.in ├── doc ├── CMakeLists.txt ├── Doxyfile.in ├── JSON-RPC-interface.md ├── README.md ├── README_doxygen.md ├── README_windows.txt ├── REST-interface.md ├── assets-attribution.md ├── assumeutxo.md ├── benchmarking.md ├── bips.md ├── bitcoin-conf.md ├── bitcoin_logo_doxygen.png ├── build-freebsd.md ├── build-netbsd.md ├── build-openbsd.md ├── build-osx.md ├── build-unix.md ├── build-windows-msvc.md ├── build-windows.md ├── cjdns.md ├── dependencies.md ├── descriptors.md ├── design │ ├── assumeutxo.md │ ├── libraries.md │ └── multiprocess.md ├── developer-notes.md ├── dnsseed-policy.md ├── external-signer.md ├── files.md ├── fuzzing.md ├── guix.md ├── i2p.md ├── init.md ├── man │ ├── bitcoin-cli.1 │ ├── bitcoin-qt.1 │ ├── bitcoin-tx.1 │ ├── bitcoin-util.1 │ ├── bitcoin-wallet.1 │ ├── bitcoin.1 │ └── bitcoind.1 ├── managing-wallets.md ├── multiprocess.md ├── multisig-tutorial.md ├── offline-signing-tutorial.md ├── p2p-bad-ports.md ├── policy │ ├── README.md │ ├── mempool-limits.md │ ├── mempool-replacements.md │ └── packages.md ├── productivity.md ├── psbt.md ├── reduce-memory.md ├── reduce-traffic.md ├── release-notes-empty-template.md ├── release-notes │ ├── release-notes-0.10.0.md │ ├── release-notes-0.10.1.md │ ├── release-notes-0.10.2.md │ ├── release-notes-0.10.3.md │ ├── release-notes-0.10.4.md │ ├── release-notes-0.11.0.md │ ├── release-notes-0.11.1.md │ ├── release-notes-0.11.2.md │ ├── release-notes-0.12.0.md │ ├── release-notes-0.12.1.md │ ├── release-notes-0.13.0.md │ ├── release-notes-0.13.1.md │ ├── release-notes-0.13.2.md │ ├── release-notes-0.14.0.md │ ├── release-notes-0.14.1.md │ ├── release-notes-0.14.2.md │ ├── release-notes-0.14.3.md │ ├── release-notes-0.15.0.1.md │ ├── release-notes-0.15.0.md │ ├── release-notes-0.15.1.md │ ├── release-notes-0.15.2.md │ ├── release-notes-0.16.0.md │ ├── release-notes-0.16.1.md │ ├── release-notes-0.16.2.md │ ├── release-notes-0.16.3.md │ ├── release-notes-0.17.0.1.md │ ├── release-notes-0.17.0.md │ ├── release-notes-0.17.1.md │ ├── release-notes-0.18.0.md │ ├── release-notes-0.18.1.md │ ├── release-notes-0.19.0.1.md │ ├── release-notes-0.19.0.md │ ├── release-notes-0.19.1.md │ ├── release-notes-0.20.0.md │ ├── release-notes-0.20.1.md │ ├── release-notes-0.20.2.md │ ├── release-notes-0.21.0.md │ ├── release-notes-0.21.1.md │ ├── release-notes-0.21.2.md │ ├── release-notes-0.3.12.md │ ├── release-notes-0.3.13.md │ ├── release-notes-0.3.14.md │ ├── release-notes-0.3.15.md │ ├── release-notes-0.3.16.md │ ├── release-notes-0.3.17.md │ ├── release-notes-0.3.18.md │ ├── release-notes-0.3.19.md │ ├── release-notes-0.3.20.1.md │ ├── release-notes-0.3.20.2.md │ ├── release-notes-0.3.20.md │ ├── release-notes-0.3.21.md │ ├── release-notes-0.3.22.md │ ├── release-notes-0.3.23.md │ ├── release-notes-0.3.24.md │ ├── release-notes-0.4.0.md │ ├── release-notes-0.4.1.md │ ├── release-notes-0.4.2.md │ ├── release-notes-0.4.3.md │ ├── release-notes-0.4.4.md │ ├── release-notes-0.4.5.md │ ├── release-notes-0.4.6.md │ ├── release-notes-0.5.0.md │ ├── release-notes-0.5.1.md │ ├── release-notes-0.5.2.md │ ├── release-notes-0.5.3.md │ ├── release-notes-0.5.4.md │ ├── release-notes-0.5.5.md │ ├── release-notes-0.6.0.md │ ├── release-notes-0.6.1.md │ ├── release-notes-0.6.2.md │ ├── release-notes-0.6.3.md │ ├── release-notes-0.7.0.md │ ├── release-notes-0.7.1.md │ ├── release-notes-0.7.2.md │ ├── release-notes-0.8.0.md │ ├── release-notes-0.8.1.md │ ├── release-notes-0.8.2.md │ ├── release-notes-0.8.3.md │ ├── release-notes-0.8.4.md │ ├── release-notes-0.8.5.md │ ├── release-notes-0.8.6.md │ ├── release-notes-0.9.0.md │ ├── release-notes-0.9.1.md │ ├── release-notes-0.9.2.1.md │ ├── release-notes-0.9.2.md │ ├── release-notes-0.9.3.md │ ├── release-notes-0.9.4.md │ ├── release-notes-0.9.5.md │ ├── release-notes-22.0.md │ ├── release-notes-22.1.md │ ├── release-notes-23.0.md │ ├── release-notes-23.1.md │ ├── release-notes-23.2.md │ ├── release-notes-24.0.1.md │ ├── release-notes-24.0.md │ ├── release-notes-24.1.md │ ├── release-notes-24.2.md │ ├── release-notes-25.0.md │ ├── release-notes-25.1.md │ ├── release-notes-25.2.md │ ├── release-notes-26.0.md │ ├── release-notes-26.1.md │ ├── release-notes-26.2.md │ ├── release-notes-27.0.md │ ├── release-notes-27.1.md │ ├── release-notes-27.2.md │ ├── release-notes-28.0.md │ ├── release-notes-28.1.md │ ├── release-notes-28.2.md │ ├── release-notes-29.0.md │ └── release-notes-29.1.md ├── release-process.md ├── tor.md ├── tracing.md ├── translation_process.md ├── translation_strings_policy.md └── zmq.md ├── libbitcoinkernel.pc.in ├── share ├── examples │ └── bitcoin.conf ├── pixmaps │ ├── bitcoin.ico │ ├── bitcoin128.png │ ├── bitcoin128.xpm │ ├── bitcoin16.png │ ├── bitcoin16.xpm │ ├── bitcoin256.png │ ├── bitcoin256.xpm │ ├── bitcoin32.png │ ├── bitcoin32.xpm │ ├── bitcoin64.png │ ├── bitcoin64.xpm │ ├── nsis-header.bmp │ └── nsis-wizard.bmp ├── qt │ ├── Info.plist.in │ └── translate.cmake ├── rpcauth │ ├── README.md │ └── rpcauth.py └── setup.nsi.in ├── src ├── .clang-format ├── .clang-tidy ├── CMakeLists.txt ├── addrdb.cpp ├── addrdb.h ├── addresstype.cpp ├── addresstype.h ├── addrman.cpp ├── addrman.h ├── addrman_impl.h ├── arith_uint256.cpp ├── arith_uint256.h ├── attributes.h ├── banman.cpp ├── banman.h ├── base58.cpp ├── base58.h ├── bech32.cpp ├── bech32.h ├── bench │ ├── CMakeLists.txt │ ├── addrman.cpp │ ├── base58.cpp │ ├── bech32.cpp │ ├── bench.cpp │ ├── bench.h │ ├── bench_bitcoin.cpp │ ├── bip324_ecdh.cpp │ ├── block_assemble.cpp │ ├── blockencodings.cpp │ ├── ccoins_caching.cpp │ ├── chacha20.cpp │ ├── checkblock.cpp │ ├── checkblockindex.cpp │ ├── checkqueue.cpp │ ├── cluster_linearize.cpp │ ├── coin_selection.cpp │ ├── connectblock.cpp │ ├── crypto_hash.cpp │ ├── data │ │ └── block413567.raw │ ├── descriptors.cpp │ ├── disconnected_transactions.cpp │ ├── duplicate_inputs.cpp │ ├── ellswift.cpp │ ├── examples.cpp │ ├── gcs_filter.cpp │ ├── hashpadding.cpp │ ├── index_blockfilter.cpp │ ├── load_external.cpp │ ├── lockedpool.cpp │ ├── logging.cpp │ ├── mempool_ephemeral_spends.cpp │ ├── mempool_eviction.cpp │ ├── mempool_stress.cpp │ ├── merkle_root.cpp │ ├── nanobench.cpp │ ├── nanobench.h │ ├── obfuscation.cpp │ ├── parse_hex.cpp │ ├── peer_eviction.cpp │ ├── poly1305.cpp │ ├── pool.cpp │ ├── prevector.cpp │ ├── random.cpp │ ├── readwriteblock.cpp │ ├── rollingbloom.cpp │ ├── rpc_blockchain.cpp │ ├── rpc_mempool.cpp │ ├── sign_transaction.cpp │ ├── streams_findbyte.cpp │ ├── strencodings.cpp │ ├── txgraph.cpp │ ├── txorphanage.cpp │ ├── util_time.cpp │ ├── verify_script.cpp │ ├── wallet_balance.cpp │ ├── wallet_create.cpp │ ├── wallet_create_tx.cpp │ ├── wallet_ismine.cpp │ ├── wallet_loading.cpp │ └── wallet_migration.cpp ├── bip324.cpp ├── bip324.h ├── bitcoin-chainstate.cpp ├── bitcoin-cli-res.rc ├── bitcoin-cli.cpp ├── bitcoin-res.rc ├── bitcoin-tx-res.rc ├── bitcoin-tx.cpp ├── bitcoin-util-res.rc ├── bitcoin-util.cpp ├── bitcoin-wallet-res.rc ├── bitcoin-wallet.cpp ├── bitcoin.cpp ├── bitcoind-res.rc ├── bitcoind.cpp ├── blockencodings.cpp ├── blockencodings.h ├── blockfilter.cpp ├── blockfilter.h ├── chain.cpp ├── chain.h ├── chainparams.cpp ├── chainparams.h ├── chainparamsbase.cpp ├── chainparamsbase.h ├── chainparamsseeds.h ├── checkqueue.h ├── clientversion.cpp ├── clientversion.h ├── cluster_linearize.h ├── coins.cpp ├── coins.h ├── common │ ├── args.cpp │ ├── args.h │ ├── bloom.cpp │ ├── bloom.h │ ├── config.cpp │ ├── init.cpp │ ├── init.h │ ├── interfaces.cpp │ ├── messages.cpp │ ├── messages.h │ ├── netif.cpp │ ├── netif.h │ ├── pcp.cpp │ ├── pcp.h │ ├── run_command.cpp │ ├── run_command.h │ ├── settings.cpp │ ├── settings.h │ ├── signmessage.cpp │ ├── signmessage.h │ ├── system.cpp │ ├── system.h │ ├── types.h │ ├── url.cpp │ └── url.h ├── compat │ ├── assumptions.h │ ├── byteswap.h │ ├── compat.h │ ├── cpuid.h │ ├── endian.h │ ├── stdin.cpp │ └── stdin.h ├── compressor.cpp ├── compressor.h ├── consensus │ ├── amount.h │ ├── consensus.h │ ├── merkle.cpp │ ├── merkle.h │ ├── params.h │ ├── tx_check.cpp │ ├── tx_check.h │ ├── tx_verify.cpp │ ├── tx_verify.h │ └── validation.h ├── core_io.h ├── core_memusage.h ├── core_read.cpp ├── core_write.cpp ├── crc32c │ ├── .clang-format │ ├── .clang_complete │ ├── .github │ │ └── workflows │ │ │ └── build.yml │ ├── .gitignore │ ├── .gitmodules │ ├── .ycm_extra_conf.py │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── Crc32cConfig.cmake.in │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── crc32c │ │ │ └── crc32c.h │ └── src │ │ ├── crc32c.cc │ │ ├── crc32c_arm64.cc │ │ ├── crc32c_arm64.h │ │ ├── crc32c_arm64_check.h │ │ ├── crc32c_arm64_unittest.cc │ │ ├── crc32c_benchmark.cc │ │ ├── crc32c_capi_unittest.c │ │ ├── crc32c_config.h.in │ │ ├── crc32c_extend_unittests.h │ │ ├── crc32c_internal.h │ │ ├── crc32c_portable.cc │ │ ├── crc32c_portable_unittest.cc │ │ ├── crc32c_prefetch.h │ │ ├── crc32c_prefetch_unittest.cc │ │ ├── crc32c_read_le.h │ │ ├── crc32c_read_le_unittest.cc │ │ ├── crc32c_round_up.h │ │ ├── crc32c_round_up_unittest.cc │ │ ├── crc32c_sse42.cc │ │ ├── crc32c_sse42.h │ │ ├── crc32c_sse42_check.h │ │ ├── crc32c_sse42_unittest.cc │ │ ├── crc32c_test_main.cc │ │ └── crc32c_unittest.cc ├── crypto │ ├── CMakeLists.txt │ ├── aes.cpp │ ├── aes.h │ ├── chacha20.cpp │ ├── chacha20.h │ ├── chacha20poly1305.cpp │ ├── chacha20poly1305.h │ ├── common.h │ ├── ctaes │ │ ├── COPYING │ │ ├── README.md │ │ ├── bench.c │ │ ├── ctaes.c │ │ ├── ctaes.h │ │ └── test.c │ ├── hex_base.cpp │ ├── hex_base.h │ ├── hkdf_sha256_32.cpp │ ├── hkdf_sha256_32.h │ ├── hmac_sha256.cpp │ ├── hmac_sha256.h │ ├── hmac_sha512.cpp │ ├── hmac_sha512.h │ ├── muhash.cpp │ ├── muhash.h │ ├── poly1305.cpp │ ├── poly1305.h │ ├── ripemd160.cpp │ ├── ripemd160.h │ ├── sha1.cpp │ ├── sha1.h │ ├── sha256.cpp │ ├── sha256.h │ ├── sha256_arm_shani.cpp │ ├── sha256_avx2.cpp │ ├── sha256_sse4.cpp │ ├── sha256_sse41.cpp │ ├── sha256_x86_shani.cpp │ ├── sha3.cpp │ ├── sha3.h │ ├── sha512.cpp │ ├── sha512.h │ ├── siphash.cpp │ └── siphash.h ├── cuckoocache.h ├── dbwrapper.cpp ├── dbwrapper.h ├── deploymentinfo.cpp ├── deploymentinfo.h ├── deploymentstatus.cpp ├── deploymentstatus.h ├── dummywallet.cpp ├── external_signer.cpp ├── external_signer.h ├── flatfile.cpp ├── flatfile.h ├── hash.cpp ├── hash.h ├── headerssync.cpp ├── headerssync.h ├── httprpc.cpp ├── httprpc.h ├── httpserver.cpp ├── httpserver.h ├── i2p.cpp ├── i2p.h ├── index │ ├── base.cpp │ ├── base.h │ ├── blockfilterindex.cpp │ ├── blockfilterindex.h │ ├── coinstatsindex.cpp │ ├── coinstatsindex.h │ ├── disktxpos.h │ ├── txindex.cpp │ └── txindex.h ├── indirectmap.h ├── init.cpp ├── init.h ├── init │ ├── bitcoin-gui.cpp │ ├── bitcoin-node.cpp │ ├── bitcoin-qt.cpp │ ├── bitcoin-wallet.cpp │ ├── bitcoind.cpp │ ├── common.cpp │ └── common.h ├── interfaces │ ├── README.md │ ├── chain.h │ ├── echo.h │ ├── handler.h │ ├── init.h │ ├── ipc.h │ ├── mining.h │ ├── node.h │ ├── types.h │ └── wallet.h ├── ipc │ ├── .clang-tidy.in │ ├── CMakeLists.txt │ ├── capnp │ │ ├── common-types.h │ │ ├── common.capnp │ │ ├── context.h │ │ ├── echo-types.h │ │ ├── echo.capnp │ │ ├── init-types.h │ │ ├── init.capnp │ │ ├── mining-types.h │ │ ├── mining.capnp │ │ ├── mining.cpp │ │ ├── protocol.cpp │ │ └── protocol.h │ ├── context.h │ ├── exception.h │ ├── interfaces.cpp │ ├── libmultiprocess │ │ ├── .clang-tidy │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── README.md │ │ ├── ci │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── default.bash │ │ │ │ ├── freebsd.bash │ │ │ │ ├── gnu32.bash │ │ │ │ ├── llvm.bash │ │ │ │ ├── macos.bash │ │ │ │ ├── olddeps.bash │ │ │ │ ├── openbsd.bash │ │ │ │ └── sanitize.bash │ │ │ ├── patches │ │ │ │ └── spaceship.patch │ │ │ └── scripts │ │ │ │ ├── ci.sh │ │ │ │ └── run.sh │ │ ├── cmake │ │ │ ├── Config.cmake.in │ │ │ ├── TargetCapnpSources.cmake │ │ │ ├── compat_config.cmake │ │ │ ├── compat_find.cmake │ │ │ └── pthread_checks.cmake │ │ ├── doc │ │ │ ├── design.md │ │ │ ├── install.md │ │ │ └── usage.md │ │ ├── example │ │ │ ├── CMakeLists.txt │ │ │ ├── calculator.capnp │ │ │ ├── calculator.cpp │ │ │ ├── calculator.h │ │ │ ├── example.cpp │ │ │ ├── init.capnp │ │ │ ├── init.h │ │ │ ├── printer.capnp │ │ │ ├── printer.cpp │ │ │ ├── printer.h │ │ │ └── types.h │ │ ├── include │ │ │ ├── mp │ │ │ │ ├── config.h.in │ │ │ │ ├── proxy-io.h │ │ │ │ ├── proxy-types.h │ │ │ │ ├── proxy.capnp │ │ │ │ ├── proxy.h │ │ │ │ ├── type-char.h │ │ │ │ ├── type-chrono.h │ │ │ │ ├── type-context.h │ │ │ │ ├── type-data.h │ │ │ │ ├── type-decay.h │ │ │ │ ├── type-exception.h │ │ │ │ ├── type-function.h │ │ │ │ ├── type-interface.h │ │ │ │ ├── type-map.h │ │ │ │ ├── type-message.h │ │ │ │ ├── type-number.h │ │ │ │ ├── type-optional.h │ │ │ │ ├── type-pair.h │ │ │ │ ├── type-pointer.h │ │ │ │ ├── type-set.h │ │ │ │ ├── type-string.h │ │ │ │ ├── type-struct.h │ │ │ │ ├── type-threadmap.h │ │ │ │ ├── type-tuple.h │ │ │ │ ├── type-vector.h │ │ │ │ ├── type-void.h │ │ │ │ └── util.h │ │ │ └── mpgen.mk │ │ ├── pkgconfig │ │ │ └── libmultiprocess.pc.in │ │ ├── shell.nix │ │ ├── src │ │ │ └── mp │ │ │ │ ├── gen.cpp │ │ │ │ ├── proxy.cpp │ │ │ │ └── util.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── mp │ │ │ └── test │ │ │ ├── foo-types.h │ │ │ ├── foo.capnp │ │ │ ├── foo.h │ │ │ └── test.cpp │ ├── process.cpp │ ├── process.h │ └── protocol.h ├── kernel │ ├── CMakeLists.txt │ ├── bitcoinkernel.cpp │ ├── blockmanager_opts.h │ ├── caches.h │ ├── chain.cpp │ ├── chain.h │ ├── chainparams.cpp │ ├── chainparams.h │ ├── chainstatemanager_opts.h │ ├── checks.cpp │ ├── checks.h │ ├── coinstats.cpp │ ├── coinstats.h │ ├── context.cpp │ ├── context.h │ ├── cs_main.cpp │ ├── cs_main.h │ ├── disconnected_transactions.cpp │ ├── disconnected_transactions.h │ ├── mempool_entry.h │ ├── mempool_limits.h │ ├── mempool_options.h │ ├── mempool_removal_reason.cpp │ ├── mempool_removal_reason.h │ ├── messagestartchars.h │ ├── notifications_interface.h │ └── warning.h ├── key.cpp ├── key.h ├── key_io.cpp ├── key_io.h ├── leveldb │ ├── .appveyor.yml │ ├── .clang-format │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NEWS │ ├── README.md │ ├── TODO │ ├── benchmarks │ │ ├── db_bench.cc │ │ ├── db_bench_sqlite3.cc │ │ └── db_bench_tree_db.cc │ ├── cmake │ │ └── leveldbConfig.cmake │ ├── db │ │ ├── autocompact_test.cc │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── c_test.c │ │ ├── corruption_test.cc │ │ ├── db_impl.cc │ │ ├── db_impl.h │ │ ├── db_iter.cc │ │ ├── db_iter.h │ │ ├── db_test.cc │ │ ├── dbformat.cc │ │ ├── dbformat.h │ │ ├── dbformat_test.cc │ │ ├── dumpfile.cc │ │ ├── fault_injection_test.cc │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── filename_test.cc │ │ ├── leveldbutil.cc │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_test.cc │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── recovery_test.cc │ │ ├── repair.cc │ │ ├── skiplist.h │ │ ├── skiplist_test.cc │ │ ├── snapshot.h │ │ ├── table_cache.cc │ │ ├── table_cache.h │ │ ├── version_edit.cc │ │ ├── version_edit.h │ │ ├── version_edit_test.cc │ │ ├── version_set.cc │ │ ├── version_set.h │ │ ├── version_set_test.cc │ │ ├── write_batch.cc │ │ ├── write_batch_internal.h │ │ └── write_batch_test.cc │ ├── doc │ │ ├── benchmark.html │ │ ├── impl.md │ │ ├── index.md │ │ ├── log_format.md │ │ └── table_format.md │ ├── helpers │ │ └── memenv │ │ │ ├── memenv.cc │ │ │ ├── memenv.h │ │ │ └── memenv_test.cc │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── export.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ ├── issues │ │ ├── issue178_test.cc │ │ ├── issue200_test.cc │ │ └── issue320_test.cc │ ├── port │ │ ├── README.md │ │ ├── port.h │ │ ├── port_config.h.in │ │ ├── port_example.h │ │ ├── port_stdcxx.h │ │ └── thread_annotations.h │ ├── table │ │ ├── block.cc │ │ ├── block.h │ │ ├── block_builder.cc │ │ ├── block_builder.h │ │ ├── filter_block.cc │ │ ├── filter_block.h │ │ ├── filter_block_test.cc │ │ ├── format.cc │ │ ├── format.h │ │ ├── iterator.cc │ │ ├── iterator_wrapper.h │ │ ├── merger.cc │ │ ├── merger.h │ │ ├── table.cc │ │ ├── table_builder.cc │ │ ├── table_test.cc │ │ ├── two_level_iterator.cc │ │ └── two_level_iterator.h │ └── util │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── arena_test.cc │ │ ├── bloom.cc │ │ ├── bloom_test.cc │ │ ├── cache.cc │ │ ├── cache_test.cc │ │ ├── coding.cc │ │ ├── coding.h │ │ ├── coding_test.cc │ │ ├── comparator.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── crc32c_test.cc │ │ ├── env.cc │ │ ├── env_posix.cc │ │ ├── env_posix_test.cc │ │ ├── env_posix_test_helper.h │ │ ├── env_test.cc │ │ ├── env_windows.cc │ │ ├── env_windows_test.cc │ │ ├── env_windows_test_helper.h │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── hash_test.cc │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── logging_test.cc │ │ ├── mutexlock.h │ │ ├── no_destructor.h │ │ ├── no_destructor_test.cc │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── status_test.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.cc │ │ ├── testutil.h │ │ └── windows_logger.h ├── logging.cpp ├── logging.h ├── logging │ └── timer.h ├── mapport.cpp ├── mapport.h ├── memusage.h ├── merkleblock.cpp ├── merkleblock.h ├── minisketch │ ├── .cirrus.yml │ ├── .gitignore │ ├── LICENSE │ ├── Makefile.am │ ├── README.md │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ ├── ax_check_compile_flag.m4 │ │ │ ├── ax_check_link_flag.m4 │ │ │ ├── ax_check_preproc_flag.m4 │ │ │ └── ax_cxx_compile_stdcxx.m4 │ ├── ci │ │ ├── cirrus.sh │ │ └── linux-debian.Dockerfile │ ├── configure.ac │ ├── doc │ │ ├── example.c │ │ ├── gen_basefpbits.sage │ │ ├── gen_params.sage │ │ ├── log2_factorial.sage │ │ ├── math.md │ │ ├── minisketch-vs.png │ │ ├── moduli.md │ │ ├── plot_bits.png │ │ ├── plot_capacity.png │ │ ├── plot_diff.png │ │ ├── plot_size.png │ │ └── protocoltips.md │ ├── include │ │ └── minisketch.h │ ├── sources.mk │ ├── src │ │ ├── bench.cpp │ │ ├── false_positives.h │ │ ├── fielddefines.h │ │ ├── fields │ │ │ ├── clmul_1byte.cpp │ │ │ ├── clmul_2bytes.cpp │ │ │ ├── clmul_3bytes.cpp │ │ │ ├── clmul_4bytes.cpp │ │ │ ├── clmul_5bytes.cpp │ │ │ ├── clmul_6bytes.cpp │ │ │ ├── clmul_7bytes.cpp │ │ │ ├── clmul_8bytes.cpp │ │ │ ├── clmul_common_impl.h │ │ │ ├── generic_1byte.cpp │ │ │ ├── generic_2bytes.cpp │ │ │ ├── generic_3bytes.cpp │ │ │ ├── generic_4bytes.cpp │ │ │ ├── generic_5bytes.cpp │ │ │ ├── generic_6bytes.cpp │ │ │ ├── generic_7bytes.cpp │ │ │ ├── generic_8bytes.cpp │ │ │ └── generic_common_impl.h │ │ ├── int_utils.h │ │ ├── lintrans.h │ │ ├── minisketch.cpp │ │ ├── sketch.h │ │ ├── sketch_impl.h │ │ ├── test.cpp │ │ └── util.h │ └── tests │ │ └── pyminisketch.py ├── musig.cpp ├── musig.h ├── net.cpp ├── net.h ├── net_permissions.cpp ├── net_permissions.h ├── net_processing.cpp ├── net_processing.h ├── net_types.cpp ├── net_types.h ├── netaddress.cpp ├── netaddress.h ├── netbase.cpp ├── netbase.h ├── netgroup.cpp ├── netgroup.h ├── netmessagemaker.h ├── node │ ├── README.md │ ├── abort.cpp │ ├── abort.h │ ├── blockmanager_args.cpp │ ├── blockmanager_args.h │ ├── blockstorage.cpp │ ├── blockstorage.h │ ├── caches.cpp │ ├── caches.h │ ├── chainstate.cpp │ ├── chainstate.h │ ├── chainstatemanager_args.cpp │ ├── chainstatemanager_args.h │ ├── coin.cpp │ ├── coin.h │ ├── coins_view_args.cpp │ ├── coins_view_args.h │ ├── connection_types.cpp │ ├── connection_types.h │ ├── context.cpp │ ├── context.h │ ├── database_args.cpp │ ├── database_args.h │ ├── eviction.cpp │ ├── eviction.h │ ├── interface_ui.cpp │ ├── interface_ui.h │ ├── interfaces.cpp │ ├── kernel_notifications.cpp │ ├── kernel_notifications.h │ ├── mempool_args.cpp │ ├── mempool_args.h │ ├── mempool_persist.cpp │ ├── mempool_persist.h │ ├── mempool_persist_args.cpp │ ├── mempool_persist_args.h │ ├── miner.cpp │ ├── miner.h │ ├── mini_miner.cpp │ ├── mini_miner.h │ ├── minisketchwrapper.cpp │ ├── minisketchwrapper.h │ ├── peerman_args.cpp │ ├── peerman_args.h │ ├── protocol_version.h │ ├── psbt.cpp │ ├── psbt.h │ ├── timeoffsets.cpp │ ├── timeoffsets.h │ ├── transaction.cpp │ ├── transaction.h │ ├── txdownloadman.h │ ├── txdownloadman_impl.cpp │ ├── txdownloadman_impl.h │ ├── txorphanage.cpp │ ├── txorphanage.h │ ├── txreconciliation.cpp │ ├── txreconciliation.h │ ├── types.h │ ├── utxo_snapshot.cpp │ ├── utxo_snapshot.h │ ├── warnings.cpp │ └── warnings.h ├── noui.cpp ├── noui.h ├── outputtype.cpp ├── outputtype.h ├── policy │ ├── ephemeral_policy.cpp │ ├── ephemeral_policy.h │ ├── feerate.cpp │ ├── feerate.h │ ├── fees.cpp │ ├── fees.h │ ├── fees_args.cpp │ ├── fees_args.h │ ├── packages.cpp │ ├── packages.h │ ├── policy.cpp │ ├── policy.h │ ├── rbf.cpp │ ├── rbf.h │ ├── settings.cpp │ ├── settings.h │ ├── truc_policy.cpp │ └── truc_policy.h ├── pow.cpp ├── pow.h ├── prevector.h ├── primitives │ ├── block.cpp │ ├── block.h │ ├── transaction.cpp │ ├── transaction.h │ └── transaction_identifier.h ├── protocol.cpp ├── protocol.h ├── psbt.cpp ├── psbt.h ├── pubkey.cpp ├── pubkey.h ├── qt │ ├── CMakeLists.txt │ ├── README.md │ ├── addressbookpage.cpp │ ├── addressbookpage.h │ ├── addresstablemodel.cpp │ ├── addresstablemodel.h │ ├── askpassphrasedialog.cpp │ ├── askpassphrasedialog.h │ ├── bantablemodel.cpp │ ├── bantablemodel.h │ ├── bitcoin.cpp │ ├── bitcoin.h │ ├── bitcoin.qrc │ ├── bitcoin_locale.qrc │ ├── bitcoinaddressvalidator.cpp │ ├── bitcoinaddressvalidator.h │ ├── bitcoinamountfield.cpp │ ├── bitcoinamountfield.h │ ├── bitcoingui.cpp │ ├── bitcoingui.h │ ├── bitcoinstrings.cpp │ ├── bitcoinunits.cpp │ ├── bitcoinunits.h │ ├── clientmodel.cpp │ ├── clientmodel.h │ ├── coincontroldialog.cpp │ ├── coincontroldialog.h │ ├── coincontroltreewidget.cpp │ ├── coincontroltreewidget.h │ ├── createwalletdialog.cpp │ ├── createwalletdialog.h │ ├── csvmodelwriter.cpp │ ├── csvmodelwriter.h │ ├── editaddressdialog.cpp │ ├── editaddressdialog.h │ ├── forms │ │ ├── addressbookpage.ui │ │ ├── askpassphrasedialog.ui │ │ ├── coincontroldialog.ui │ │ ├── createwalletdialog.ui │ │ ├── debugwindow.ui │ │ ├── editaddressdialog.ui │ │ ├── helpmessagedialog.ui │ │ ├── intro.ui │ │ ├── modaloverlay.ui │ │ ├── openuridialog.ui │ │ ├── optionsdialog.ui │ │ ├── overviewpage.ui │ │ ├── psbtoperationsdialog.ui │ │ ├── receivecoinsdialog.ui │ │ ├── receiverequestdialog.ui │ │ ├── sendcoinsdialog.ui │ │ ├── sendcoinsentry.ui │ │ ├── signverifymessagedialog.ui │ │ └── transactiondescdialog.ui │ ├── freespacechecker.cpp │ ├── freespacechecker.h │ ├── guiconstants.h │ ├── guiutil.cpp │ ├── guiutil.h │ ├── initexecutor.cpp │ ├── initexecutor.h │ ├── intro.cpp │ ├── intro.h │ ├── locale │ │ ├── CMakeLists.txt │ │ ├── bitcoin_am.ts │ │ ├── bitcoin_ar.ts │ │ ├── bitcoin_ast_ES.ts │ │ ├── bitcoin_az.ts │ │ ├── bitcoin_az@latin.ts │ │ ├── bitcoin_be.ts │ │ ├── bitcoin_bg.ts │ │ ├── bitcoin_bn.ts │ │ ├── bitcoin_br.ts │ │ ├── bitcoin_bs.ts │ │ ├── bitcoin_ca.ts │ │ ├── bitcoin_cmn.ts │ │ ├── bitcoin_cs.ts │ │ ├── bitcoin_cy.ts │ │ ├── bitcoin_da.ts │ │ ├── bitcoin_de.ts │ │ ├── bitcoin_el.ts │ │ ├── bitcoin_en.ts │ │ ├── bitcoin_en.xlf │ │ ├── bitcoin_eo.ts │ │ ├── bitcoin_es.ts │ │ ├── bitcoin_et.ts │ │ ├── bitcoin_eu.ts │ │ ├── bitcoin_fa.ts │ │ ├── bitcoin_fi.ts │ │ ├── bitcoin_fil.ts │ │ ├── bitcoin_fo.ts │ │ ├── bitcoin_fr.ts │ │ ├── bitcoin_ga.ts │ │ ├── bitcoin_ga_IE.ts │ │ ├── bitcoin_gl.ts │ │ ├── bitcoin_gl_ES.ts │ │ ├── bitcoin_gu.ts │ │ ├── bitcoin_hak.ts │ │ ├── bitcoin_he.ts │ │ ├── bitcoin_hi.ts │ │ ├── bitcoin_hr.ts │ │ ├── bitcoin_hu.ts │ │ ├── bitcoin_id.ts │ │ ├── bitcoin_is.ts │ │ ├── bitcoin_it.ts │ │ ├── bitcoin_ja.ts │ │ ├── bitcoin_ka.ts │ │ ├── bitcoin_kk.ts │ │ ├── bitcoin_kk@latin.ts │ │ ├── bitcoin_km.ts │ │ ├── bitcoin_kn.ts │ │ ├── bitcoin_ko.ts │ │ ├── bitcoin_ku.ts │ │ ├── bitcoin_ku_IQ.ts │ │ ├── bitcoin_lt.ts │ │ ├── bitcoin_lv.ts │ │ ├── bitcoin_mi.ts │ │ ├── bitcoin_mk.ts │ │ ├── bitcoin_ml.ts │ │ ├── bitcoin_mn.ts │ │ ├── bitcoin_ms.ts │ │ ├── bitcoin_mt.ts │ │ ├── bitcoin_nb.ts │ │ ├── bitcoin_ne.ts │ │ ├── bitcoin_nl.ts │ │ ├── bitcoin_no.ts │ │ ├── bitcoin_pam.ts │ │ ├── bitcoin_pl.ts │ │ ├── bitcoin_ps.ts │ │ ├── bitcoin_pt.ts │ │ ├── bitcoin_pt_BR.ts │ │ ├── bitcoin_ro.ts │ │ ├── bitcoin_ru.ts │ │ ├── bitcoin_si.ts │ │ ├── bitcoin_sk.ts │ │ ├── bitcoin_sl.ts │ │ ├── bitcoin_sm.ts │ │ ├── bitcoin_sq.ts │ │ ├── bitcoin_sr.ts │ │ ├── bitcoin_sr@ijekavianlatin.ts │ │ ├── bitcoin_sr@latin.ts │ │ ├── bitcoin_sv.ts │ │ ├── bitcoin_sw.ts │ │ ├── bitcoin_szl.ts │ │ ├── bitcoin_ta.ts │ │ ├── bitcoin_te.ts │ │ ├── bitcoin_th.ts │ │ ├── bitcoin_tk.ts │ │ ├── bitcoin_tl.ts │ │ ├── bitcoin_tr.ts │ │ ├── bitcoin_uk.ts │ │ ├── bitcoin_ur.ts │ │ ├── bitcoin_uz.ts │ │ ├── bitcoin_uz@Cyrl.ts │ │ ├── bitcoin_uz@Latn.ts │ │ ├── bitcoin_ve.ts │ │ ├── bitcoin_yi.ts │ │ ├── bitcoin_yue.ts │ │ ├── bitcoin_zh-Hans.ts │ │ ├── bitcoin_zh-Hant.ts │ │ ├── bitcoin_zh_CN.ts │ │ ├── bitcoin_zh_HK.ts │ │ ├── bitcoin_zh_TW.ts │ │ └── ts_files.cmake │ ├── macdockiconhandler.h │ ├── macdockiconhandler.mm │ ├── macnotificationhandler.h │ ├── macnotificationhandler.mm │ ├── macos_appnap.h │ ├── macos_appnap.mm │ ├── main.cpp │ ├── modaloverlay.cpp │ ├── modaloverlay.h │ ├── networkstyle.cpp │ ├── networkstyle.h │ ├── notificator.cpp │ ├── notificator.h │ ├── openuridialog.cpp │ ├── openuridialog.h │ ├── optionsdialog.cpp │ ├── optionsdialog.h │ ├── optionsmodel.cpp │ ├── optionsmodel.h │ ├── overviewpage.cpp │ ├── overviewpage.h │ ├── paymentserver.cpp │ ├── paymentserver.h │ ├── peertablemodel.cpp │ ├── peertablemodel.h │ ├── peertablesortproxy.cpp │ ├── peertablesortproxy.h │ ├── platformstyle.cpp │ ├── platformstyle.h │ ├── psbtoperationsdialog.cpp │ ├── psbtoperationsdialog.h │ ├── qrimagewidget.cpp │ ├── qrimagewidget.h │ ├── qvalidatedlineedit.cpp │ ├── qvalidatedlineedit.h │ ├── qvaluecombobox.cpp │ ├── qvaluecombobox.h │ ├── receivecoinsdialog.cpp │ ├── receivecoinsdialog.h │ ├── receiverequestdialog.cpp │ ├── receiverequestdialog.h │ ├── recentrequeststablemodel.cpp │ ├── recentrequeststablemodel.h │ ├── res │ │ ├── animation │ │ │ ├── makespinner.sh │ │ │ ├── spinner-000.png │ │ │ ├── spinner-001.png │ │ │ ├── spinner-002.png │ │ │ ├── spinner-003.png │ │ │ ├── spinner-004.png │ │ │ ├── spinner-005.png │ │ │ ├── spinner-006.png │ │ │ ├── spinner-007.png │ │ │ ├── spinner-008.png │ │ │ ├── spinner-009.png │ │ │ ├── spinner-010.png │ │ │ ├── spinner-011.png │ │ │ ├── spinner-012.png │ │ │ ├── spinner-013.png │ │ │ ├── spinner-014.png │ │ │ ├── spinner-015.png │ │ │ ├── spinner-016.png │ │ │ ├── spinner-017.png │ │ │ ├── spinner-018.png │ │ │ ├── spinner-019.png │ │ │ ├── spinner-020.png │ │ │ ├── spinner-021.png │ │ │ ├── spinner-022.png │ │ │ ├── spinner-023.png │ │ │ ├── spinner-024.png │ │ │ ├── spinner-025.png │ │ │ ├── spinner-026.png │ │ │ ├── spinner-027.png │ │ │ ├── spinner-028.png │ │ │ ├── spinner-029.png │ │ │ ├── spinner-030.png │ │ │ ├── spinner-031.png │ │ │ ├── spinner-032.png │ │ │ ├── spinner-033.png │ │ │ ├── spinner-034.png │ │ │ └── spinner-035.png │ │ ├── bitcoin-qt-res.rc │ │ ├── fonts │ │ │ └── RobotoMono-Bold.ttf │ │ ├── icons │ │ │ ├── add.png │ │ │ ├── address-book.png │ │ │ ├── bitcoin.icns │ │ │ ├── bitcoin.ico │ │ │ ├── bitcoin.png │ │ │ ├── bitcoin_signet.ico │ │ │ ├── bitcoin_testnet.ico │ │ │ ├── chevron.png │ │ │ ├── clock1.png │ │ │ ├── clock2.png │ │ │ ├── clock3.png │ │ │ ├── clock4.png │ │ │ ├── clock5.png │ │ │ ├── connect0.png │ │ │ ├── connect1.png │ │ │ ├── connect2.png │ │ │ ├── connect3.png │ │ │ ├── connect4.png │ │ │ ├── edit.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── export.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── fontbigger.png │ │ │ ├── fontsmaller.png │ │ │ ├── hd_disabled.png │ │ │ ├── hd_enabled.png │ │ │ ├── history.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── network_disabled.png │ │ │ ├── overview.png │ │ │ ├── proxy.png │ │ │ ├── receive.png │ │ │ ├── remove.png │ │ │ ├── send.png │ │ │ ├── synced.png │ │ │ ├── transaction0.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_abandoned.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ ├── tx_output.png │ │ │ └── warning.png │ │ └── src │ │ │ ├── bitcoin.svg │ │ │ ├── clock_0.svg │ │ │ ├── clock_1.svg │ │ │ ├── clock_2.svg │ │ │ ├── clock_3.svg │ │ │ ├── clock_4.svg │ │ │ ├── connect-0.svg │ │ │ ├── connect-1.svg │ │ │ ├── connect-2.svg │ │ │ ├── connect-3.svg │ │ │ ├── connect-4.svg │ │ │ ├── hd_disabled.svg │ │ │ ├── hd_enabled.svg │ │ │ ├── mine.svg │ │ │ ├── network_disabled.svg │ │ │ ├── proxy.svg │ │ │ ├── qt.svg │ │ │ ├── spinner.png │ │ │ ├── transaction0.svg │ │ │ ├── tx_in.svg │ │ │ └── tx_inout.svg │ ├── rpcconsole.cpp │ ├── rpcconsole.h │ ├── sendcoinsdialog.cpp │ ├── sendcoinsdialog.h │ ├── sendcoinsentry.cpp │ ├── sendcoinsentry.h │ ├── sendcoinsrecipient.h │ ├── signverifymessagedialog.cpp │ ├── signverifymessagedialog.h │ ├── splashscreen.cpp │ ├── splashscreen.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── addressbooktests.cpp │ │ ├── addressbooktests.h │ │ ├── apptests.cpp │ │ ├── apptests.h │ │ ├── optiontests.cpp │ │ ├── optiontests.h │ │ ├── rpcnestedtests.cpp │ │ ├── rpcnestedtests.h │ │ ├── test_main.cpp │ │ ├── uritests.cpp │ │ ├── uritests.h │ │ ├── util.cpp │ │ ├── util.h │ │ ├── wallettests.cpp │ │ └── wallettests.h │ ├── trafficgraphwidget.cpp │ ├── trafficgraphwidget.h │ ├── transactiondesc.cpp │ ├── transactiondesc.h │ ├── transactiondescdialog.cpp │ ├── transactiondescdialog.h │ ├── transactionfilterproxy.cpp │ ├── transactionfilterproxy.h │ ├── transactionoverviewwidget.cpp │ ├── transactionoverviewwidget.h │ ├── transactionrecord.cpp │ ├── transactionrecord.h │ ├── transactiontablemodel.cpp │ ├── transactiontablemodel.h │ ├── transactionview.cpp │ ├── transactionview.h │ ├── utilitydialog.cpp │ ├── utilitydialog.h │ ├── walletcontroller.cpp │ ├── walletcontroller.h │ ├── walletframe.cpp │ ├── walletframe.h │ ├── walletmodel.cpp │ ├── walletmodel.h │ ├── walletmodeltransaction.cpp │ ├── walletmodeltransaction.h │ ├── walletview.cpp │ ├── walletview.h │ ├── winshutdownmonitor.cpp │ └── winshutdownmonitor.h ├── random.cpp ├── random.h ├── randomenv.cpp ├── randomenv.h ├── rest.cpp ├── rest.h ├── rpc │ ├── blockchain.cpp │ ├── blockchain.h │ ├── client.cpp │ ├── client.h │ ├── external_signer.cpp │ ├── fees.cpp │ ├── mempool.cpp │ ├── mempool.h │ ├── mining.cpp │ ├── mining.h │ ├── net.cpp │ ├── node.cpp │ ├── output_script.cpp │ ├── protocol.h │ ├── rawtransaction.cpp │ ├── rawtransaction_util.cpp │ ├── rawtransaction_util.h │ ├── register.h │ ├── request.cpp │ ├── request.h │ ├── server.cpp │ ├── server.h │ ├── server_util.cpp │ ├── server_util.h │ ├── signmessage.cpp │ ├── txoutproof.cpp │ ├── util.cpp │ └── util.h ├── scheduler.cpp ├── scheduler.h ├── script │ ├── descriptor.cpp │ ├── descriptor.h │ ├── interpreter.cpp │ ├── interpreter.h │ ├── keyorigin.h │ ├── miniscript.cpp │ ├── miniscript.h │ ├── parsing.cpp │ ├── parsing.h │ ├── script.cpp │ ├── script.h │ ├── script_error.cpp │ ├── script_error.h │ ├── sigcache.cpp │ ├── sigcache.h │ ├── sign.cpp │ ├── sign.h │ ├── signingprovider.cpp │ ├── signingprovider.h │ ├── solver.cpp │ └── solver.h ├── secp256k1 │ ├── .gitattributes │ ├── .github │ │ ├── actions │ │ │ ├── install-homebrew-valgrind │ │ │ │ └── action.yml │ │ │ ├── print-logs │ │ │ │ └── action.yml │ │ │ └── run-in-docker-action │ │ │ │ └── action.yml │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── SECURITY.md │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ └── bitcoin_secp.m4 │ ├── ci │ │ ├── ci.sh │ │ └── linux-debian.Dockerfile │ ├── cmake │ │ ├── CheckArm32Assembly.cmake │ │ ├── CheckMemorySanitizer.cmake │ │ ├── CheckStringOptionValue.cmake │ │ ├── CheckX86_64Assembly.cmake │ │ ├── FindValgrind.cmake │ │ ├── GeneratePkgConfigFile.cmake │ │ ├── TryAppendCFlags.cmake │ │ ├── arm-linux-gnueabihf.toolchain.cmake │ │ ├── config.cmake.in │ │ ├── source_arm32.s │ │ └── x86_64-w64-mingw32.toolchain.cmake │ ├── configure.ac │ ├── contrib │ │ ├── lax_der_parsing.c │ │ ├── lax_der_parsing.h │ │ ├── lax_der_privatekey_parsing.c │ │ └── lax_der_privatekey_parsing.h │ ├── doc │ │ ├── ellswift.md │ │ ├── musig.md │ │ ├── release-process.md │ │ └── safegcd_implementation.md │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── EXAMPLES_COPYING │ │ ├── ecdh.c │ │ ├── ecdsa.c │ │ ├── ellswift.c │ │ ├── examples_util.h │ │ ├── musig.c │ │ └── schnorr.c │ ├── include │ │ ├── secp256k1.h │ │ ├── secp256k1_ecdh.h │ │ ├── secp256k1_ellswift.h │ │ ├── secp256k1_extrakeys.h │ │ ├── secp256k1_musig.h │ │ ├── secp256k1_preallocated.h │ │ ├── secp256k1_recovery.h │ │ └── secp256k1_schnorrsig.h │ ├── libsecp256k1.pc.in │ ├── sage │ │ ├── gen_exhaustive_groups.sage │ │ ├── gen_split_lambda_constants.sage │ │ ├── group_prover.sage │ │ ├── prove_group_implementations.sage │ │ ├── secp256k1_params.sage │ │ └── weierstrass_prover.sage │ ├── src │ │ ├── CMakeLists.txt │ │ ├── asm │ │ │ └── field_10x26_arm.s │ │ ├── assumptions.h │ │ ├── bench.c │ │ ├── bench.h │ │ ├── bench_ecmult.c │ │ ├── bench_internal.c │ │ ├── checkmem.h │ │ ├── ctime_tests.c │ │ ├── ecdsa.h │ │ ├── ecdsa_impl.h │ │ ├── eckey.h │ │ ├── eckey_impl.h │ │ ├── ecmult.h │ │ ├── ecmult_compute_table.h │ │ ├── ecmult_compute_table_impl.h │ │ ├── ecmult_const.h │ │ ├── ecmult_const_impl.h │ │ ├── ecmult_gen.h │ │ ├── ecmult_gen_compute_table.h │ │ ├── ecmult_gen_compute_table_impl.h │ │ ├── ecmult_gen_impl.h │ │ ├── ecmult_impl.h │ │ ├── field.h │ │ ├── field_10x26.h │ │ ├── field_10x26_impl.h │ │ ├── field_5x52.h │ │ ├── field_5x52_impl.h │ │ ├── field_5x52_int128_impl.h │ │ ├── field_impl.h │ │ ├── group.h │ │ ├── group_impl.h │ │ ├── hash.h │ │ ├── hash_impl.h │ │ ├── hsort.h │ │ ├── hsort_impl.h │ │ ├── int128.h │ │ ├── int128_impl.h │ │ ├── int128_native.h │ │ ├── int128_native_impl.h │ │ ├── int128_struct.h │ │ ├── int128_struct_impl.h │ │ ├── modinv32.h │ │ ├── modinv32_impl.h │ │ ├── modinv64.h │ │ ├── modinv64_impl.h │ │ ├── modules │ │ │ ├── ecdh │ │ │ │ ├── Makefile.am.include │ │ │ │ ├── bench_impl.h │ │ │ │ ├── main_impl.h │ │ │ │ └── tests_impl.h │ │ │ ├── ellswift │ │ │ │ ├── Makefile.am.include │ │ │ │ ├── bench_impl.h │ │ │ │ ├── main_impl.h │ │ │ │ ├── tests_exhaustive_impl.h │ │ │ │ └── tests_impl.h │ │ │ ├── extrakeys │ │ │ │ ├── Makefile.am.include │ │ │ │ ├── main_impl.h │ │ │ │ ├── tests_exhaustive_impl.h │ │ │ │ └── tests_impl.h │ │ │ ├── musig │ │ │ │ ├── Makefile.am.include │ │ │ │ ├── keyagg.h │ │ │ │ ├── keyagg_impl.h │ │ │ │ ├── main_impl.h │ │ │ │ ├── session.h │ │ │ │ ├── session_impl.h │ │ │ │ ├── tests_impl.h │ │ │ │ └── vectors.h │ │ │ ├── recovery │ │ │ │ ├── Makefile.am.include │ │ │ │ ├── bench_impl.h │ │ │ │ ├── main_impl.h │ │ │ │ ├── tests_exhaustive_impl.h │ │ │ │ └── tests_impl.h │ │ │ └── schnorrsig │ │ │ │ ├── Makefile.am.include │ │ │ │ ├── bench_impl.h │ │ │ │ ├── main_impl.h │ │ │ │ ├── tests_exhaustive_impl.h │ │ │ │ └── tests_impl.h │ │ ├── precompute_ecmult.c │ │ ├── precompute_ecmult_gen.c │ │ ├── precomputed_ecmult.c │ │ ├── precomputed_ecmult.h │ │ ├── precomputed_ecmult_gen.c │ │ ├── precomputed_ecmult_gen.h │ │ ├── scalar.h │ │ ├── scalar_4x64.h │ │ ├── scalar_4x64_impl.h │ │ ├── scalar_8x32.h │ │ ├── scalar_8x32_impl.h │ │ ├── scalar_impl.h │ │ ├── scalar_low.h │ │ ├── scalar_low_impl.h │ │ ├── scratch.h │ │ ├── scratch_impl.h │ │ ├── secp256k1.c │ │ ├── selftest.h │ │ ├── testrand.h │ │ ├── testrand_impl.h │ │ ├── tests.c │ │ ├── tests_exhaustive.c │ │ ├── testutil.h │ │ ├── util.h │ │ ├── util_local_visibility.h │ │ └── wycheproof │ │ │ ├── WYCHEPROOF_COPYING │ │ │ ├── ecdh_secp256k1_test.h │ │ │ ├── ecdh_secp256k1_test.json │ │ │ ├── ecdsa_secp256k1_sha256_bitcoin_test.h │ │ │ └── ecdsa_secp256k1_sha256_bitcoin_test.json │ └── tools │ │ ├── check-abi.sh │ │ ├── symbol-check.py │ │ ├── test_vectors_musig2_generate.py │ │ ├── tests_wycheproof_generate_ecdh.py │ │ ├── tests_wycheproof_generate_ecdsa.py │ │ └── wycheproof_utils.py ├── semaphore_grant.h ├── serialize.h ├── signet.cpp ├── signet.h ├── span.h ├── streams.cpp ├── streams.h ├── support │ ├── allocators │ │ ├── pool.h │ │ ├── secure.h │ │ └── zeroafterfree.h │ ├── cleanse.cpp │ ├── cleanse.h │ ├── events.h │ ├── lockedpool.cpp │ └── lockedpool.h ├── sync.cpp ├── sync.h ├── test │ ├── CMakeLists.txt │ ├── README.md │ ├── addrman_tests.cpp │ ├── allocator_tests.cpp │ ├── amount_tests.cpp │ ├── argsman_tests.cpp │ ├── arith_uint256_tests.cpp │ ├── banman_tests.cpp │ ├── base32_tests.cpp │ ├── base58_tests.cpp │ ├── base64_tests.cpp │ ├── bech32_tests.cpp │ ├── bip324_tests.cpp │ ├── bip32_tests.cpp │ ├── blockchain_tests.cpp │ ├── blockencodings_tests.cpp │ ├── blockfilter_index_tests.cpp │ ├── blockfilter_tests.cpp │ ├── blockmanager_tests.cpp │ ├── bloom_tests.cpp │ ├── bswap_tests.cpp │ ├── caches_tests.cpp │ ├── chainstate_write_tests.cpp │ ├── checkqueue_tests.cpp │ ├── cluster_linearize_tests.cpp │ ├── coins_tests.cpp │ ├── coinscachepair_tests.cpp │ ├── coinstatsindex_tests.cpp │ ├── common_url_tests.cpp │ ├── compilerbug_tests.cpp │ ├── compress_tests.cpp │ ├── crypto_tests.cpp │ ├── cuckoocache_tests.cpp │ ├── data │ │ ├── README.md │ │ ├── asmap.raw │ │ ├── base58_encode_decode.json │ │ ├── bip341_wallet_vectors.json │ │ ├── blockfilters.json │ │ ├── key_io_invalid.json │ │ ├── key_io_valid.json │ │ ├── script_tests.json │ │ ├── sighash.json │ │ ├── tx_invalid.json │ │ └── tx_valid.json │ ├── dbwrapper_tests.cpp │ ├── denialofservice_tests.cpp │ ├── descriptor_tests.cpp │ ├── disconnected_transactions.cpp │ ├── feefrac_tests.cpp │ ├── flatfile_tests.cpp │ ├── fs_tests.cpp │ ├── fuzz │ │ ├── CMakeLists.txt │ │ ├── FuzzedDataProvider.h │ │ ├── addition_overflow.cpp │ │ ├── addrman.cpp │ │ ├── asmap.cpp │ │ ├── asmap_direct.cpp │ │ ├── autofile.cpp │ │ ├── banman.cpp │ │ ├── base_encode_decode.cpp │ │ ├── bech32.cpp │ │ ├── bip324.cpp │ │ ├── bitdeque.cpp │ │ ├── bitset.cpp │ │ ├── block.cpp │ │ ├── block_header.cpp │ │ ├── block_index.cpp │ │ ├── blockfilter.cpp │ │ ├── bloom_filter.cpp │ │ ├── buffered_file.cpp │ │ ├── chain.cpp │ │ ├── checkqueue.cpp │ │ ├── cluster_linearize.cpp │ │ ├── coins_view.cpp │ │ ├── coinscache_sim.cpp │ │ ├── connman.cpp │ │ ├── crypto.cpp │ │ ├── crypto_aes256.cpp │ │ ├── crypto_aes256cbc.cpp │ │ ├── crypto_chacha20.cpp │ │ ├── crypto_chacha20poly1305.cpp │ │ ├── crypto_common.cpp │ │ ├── crypto_diff_fuzz_chacha20.cpp │ │ ├── crypto_hkdf_hmac_sha256_l32.cpp │ │ ├── crypto_poly1305.cpp │ │ ├── cuckoocache.cpp │ │ ├── decode_tx.cpp │ │ ├── descriptor_parse.cpp │ │ ├── deserialize.cpp │ │ ├── eval_script.cpp │ │ ├── fee_rate.cpp │ │ ├── feefrac.cpp │ │ ├── feeratediagram.cpp │ │ ├── fees.cpp │ │ ├── flatfile.cpp │ │ ├── float.cpp │ │ ├── fuzz.cpp │ │ ├── fuzz.h │ │ ├── golomb_rice.cpp │ │ ├── headerssync.cpp │ │ ├── hex.cpp │ │ ├── http_request.cpp │ │ ├── i2p.cpp │ │ ├── integer.cpp │ │ ├── key.cpp │ │ ├── key_io.cpp │ │ ├── kitchen_sink.cpp │ │ ├── load_external_block_file.cpp │ │ ├── locale.cpp │ │ ├── merkle.cpp │ │ ├── merkleblock.cpp │ │ ├── message.cpp │ │ ├── mini_miner.cpp │ │ ├── miniscript.cpp │ │ ├── minisketch.cpp │ │ ├── muhash.cpp │ │ ├── multiplication_overflow.cpp │ │ ├── net.cpp │ │ ├── net_permissions.cpp │ │ ├── netaddress.cpp │ │ ├── netbase_dns_lookup.cpp │ │ ├── node_eviction.cpp │ │ ├── overflow.cpp │ │ ├── p2p_handshake.cpp │ │ ├── p2p_headers_presync.cpp │ │ ├── p2p_transport_serialization.cpp │ │ ├── package_eval.cpp │ │ ├── parse_hd_keypath.cpp │ │ ├── parse_iso8601.cpp │ │ ├── parse_numbers.cpp │ │ ├── parse_script.cpp │ │ ├── parse_univalue.cpp │ │ ├── partially_downloaded_block.cpp │ │ ├── pcp.cpp │ │ ├── policy_estimator.cpp │ │ ├── policy_estimator_io.cpp │ │ ├── poolresource.cpp │ │ ├── pow.cpp │ │ ├── prevector.cpp │ │ ├── primitives_transaction.cpp │ │ ├── process_message.cpp │ │ ├── process_messages.cpp │ │ ├── protocol.cpp │ │ ├── psbt.cpp │ │ ├── random.cpp │ │ ├── rbf.cpp │ │ ├── rolling_bloom_filter.cpp │ │ ├── rpc.cpp │ │ ├── script.cpp │ │ ├── script_assets_test_minimizer.cpp │ │ ├── script_descriptor_cache.cpp │ │ ├── script_flags.cpp │ │ ├── script_format.cpp │ │ ├── script_interpreter.cpp │ │ ├── script_ops.cpp │ │ ├── script_parsing.cpp │ │ ├── script_sigcache.cpp │ │ ├── script_sign.cpp │ │ ├── scriptnum_ops.cpp │ │ ├── secp256k1_ec_seckey_import_export_der.cpp │ │ ├── secp256k1_ecdsa_signature_parse_der_lax.cpp │ │ ├── signature_checker.cpp │ │ ├── signet.cpp │ │ ├── socks5.cpp │ │ ├── span.cpp │ │ ├── string.cpp │ │ ├── strprintf.cpp │ │ ├── system.cpp │ │ ├── timeoffsets.cpp │ │ ├── torcontrol.cpp │ │ ├── transaction.cpp │ │ ├── tx_in.cpp │ │ ├── tx_out.cpp │ │ ├── tx_pool.cpp │ │ ├── txdownloadman.cpp │ │ ├── txgraph.cpp │ │ ├── txorphan.cpp │ │ ├── txrequest.cpp │ │ ├── util.cpp │ │ ├── util.h │ │ ├── util │ │ │ ├── CMakeLists.txt │ │ │ ├── check_globals.cpp │ │ │ ├── check_globals.h │ │ │ ├── descriptor.cpp │ │ │ ├── descriptor.h │ │ │ ├── mempool.cpp │ │ │ ├── mempool.h │ │ │ ├── net.cpp │ │ │ ├── net.h │ │ │ └── wallet.h │ │ ├── utxo_snapshot.cpp │ │ ├── utxo_total_supply.cpp │ │ ├── validation_load_mempool.cpp │ │ ├── vecdeque.cpp │ │ └── versionbits.cpp │ ├── getarg_tests.cpp │ ├── hash_tests.cpp │ ├── headers_sync_chainwork_tests.cpp │ ├── httpserver_tests.cpp │ ├── i2p_tests.cpp │ ├── interfaces_tests.cpp │ ├── ipc_test.capnp │ ├── ipc_test.cpp │ ├── ipc_test.h │ ├── ipc_test_types.h │ ├── ipc_tests.cpp │ ├── key_io_tests.cpp │ ├── key_tests.cpp │ ├── logging_tests.cpp │ ├── main.cpp │ ├── mempool_tests.cpp │ ├── merkle_tests.cpp │ ├── merkleblock_tests.cpp │ ├── miner_tests.cpp │ ├── miniminer_tests.cpp │ ├── miniscript_tests.cpp │ ├── minisketch_tests.cpp │ ├── multisig_tests.cpp │ ├── net_peer_connection_tests.cpp │ ├── net_peer_eviction_tests.cpp │ ├── net_tests.cpp │ ├── netbase_tests.cpp │ ├── node_init_tests.cpp │ ├── node_warnings_tests.cpp │ ├── orphanage_tests.cpp │ ├── pcp_tests.cpp │ ├── peerman_tests.cpp │ ├── pmt_tests.cpp │ ├── policy_fee_tests.cpp │ ├── policyestimator_tests.cpp │ ├── pool_tests.cpp │ ├── pow_tests.cpp │ ├── prevector_tests.cpp │ ├── raii_event_tests.cpp │ ├── random_tests.cpp │ ├── rbf_tests.cpp │ ├── rest_tests.cpp │ ├── result_tests.cpp │ ├── reverselock_tests.cpp │ ├── rpc_tests.cpp │ ├── sanity_tests.cpp │ ├── scheduler_tests.cpp │ ├── script_assets_tests.cpp │ ├── script_p2sh_tests.cpp │ ├── script_parse_tests.cpp │ ├── script_segwit_tests.cpp │ ├── script_standard_tests.cpp │ ├── script_tests.cpp │ ├── scriptnum10.h │ ├── scriptnum_tests.cpp │ ├── serfloat_tests.cpp │ ├── serialize_tests.cpp │ ├── settings_tests.cpp │ ├── sighash_tests.cpp │ ├── sigopcount_tests.cpp │ ├── skiplist_tests.cpp │ ├── sock_tests.cpp │ ├── span_tests.cpp │ ├── streams_tests.cpp │ ├── sync_tests.cpp │ ├── system_ram_tests.cpp │ ├── system_tests.cpp │ ├── testnet4_miner_tests.cpp │ ├── timeoffsets_tests.cpp │ ├── torcontrol_tests.cpp │ ├── transaction_tests.cpp │ ├── translation_tests.cpp │ ├── txdownload_tests.cpp │ ├── txgraph_tests.cpp │ ├── txindex_tests.cpp │ ├── txpackage_tests.cpp │ ├── txreconciliation_tests.cpp │ ├── txrequest_tests.cpp │ ├── txvalidation_tests.cpp │ ├── txvalidationcache_tests.cpp │ ├── uint256_tests.cpp │ ├── util │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── blockfilter.cpp │ │ ├── blockfilter.h │ │ ├── chainstate.h │ │ ├── cluster_linearize.h │ │ ├── coins.cpp │ │ ├── coins.h │ │ ├── coverage.cpp │ │ ├── coverage.h │ │ ├── json.cpp │ │ ├── json.h │ │ ├── logging.cpp │ │ ├── logging.h │ │ ├── mining.cpp │ │ ├── mining.h │ │ ├── net.cpp │ │ ├── net.h │ │ ├── poolresourcetester.h │ │ ├── random.cpp │ │ ├── random.h │ │ ├── script.cpp │ │ ├── script.h │ │ ├── setup_common.cpp │ │ ├── setup_common.h │ │ ├── str.cpp │ │ ├── str.h │ │ ├── time.cpp │ │ ├── time.h │ │ ├── transaction_utils.cpp │ │ ├── transaction_utils.h │ │ ├── txmempool.cpp │ │ ├── txmempool.h │ │ ├── validation.cpp │ │ └── validation.h │ ├── util_string_tests.cpp │ ├── util_tests.cpp │ ├── util_threadnames_tests.cpp │ ├── util_trace_tests.cpp │ ├── validation_block_tests.cpp │ ├── validation_chainstate_tests.cpp │ ├── validation_chainstatemanager_tests.cpp │ ├── validation_flush_tests.cpp │ ├── validation_tests.cpp │ ├── validationinterface_tests.cpp │ └── versionbits_tests.cpp ├── threadsafety.h ├── tinyformat.h ├── torcontrol.cpp ├── torcontrol.h ├── txdb.cpp ├── txdb.h ├── txgraph.cpp ├── txgraph.h ├── txmempool.cpp ├── txmempool.h ├── txrequest.cpp ├── txrequest.h ├── uint256.cpp ├── uint256.h ├── undo.h ├── univalue │ ├── CMakeLists.txt │ ├── include │ │ ├── univalue.h │ │ ├── univalue_escapes.h │ │ └── univalue_utffilter.h │ ├── lib │ │ ├── univalue.cpp │ │ ├── univalue_get.cpp │ │ ├── univalue_read.cpp │ │ └── univalue_write.cpp │ └── test │ │ ├── fail1.json │ │ ├── fail10.json │ │ ├── fail11.json │ │ ├── fail12.json │ │ ├── fail13.json │ │ ├── fail14.json │ │ ├── fail15.json │ │ ├── fail16.json │ │ ├── fail17.json │ │ ├── fail18.json │ │ ├── fail19.json │ │ ├── fail2.json │ │ ├── fail20.json │ │ ├── fail21.json │ │ ├── fail22.json │ │ ├── fail23.json │ │ ├── fail24.json │ │ ├── fail25.json │ │ ├── fail26.json │ │ ├── fail27.json │ │ ├── fail28.json │ │ ├── fail29.json │ │ ├── fail3.json │ │ ├── fail30.json │ │ ├── fail31.json │ │ ├── fail32.json │ │ ├── fail33.json │ │ ├── fail34.json │ │ ├── fail35.json │ │ ├── fail36.json │ │ ├── fail37.json │ │ ├── fail38.json │ │ ├── fail39.json │ │ ├── fail4.json │ │ ├── fail40.json │ │ ├── fail41.json │ │ ├── fail42.json │ │ ├── fail44.json │ │ ├── fail45.json │ │ ├── fail5.json │ │ ├── fail6.json │ │ ├── fail7.json │ │ ├── fail8.json │ │ ├── fail9.json │ │ ├── object.cpp │ │ ├── pass1.json │ │ ├── pass2.json │ │ ├── pass3.json │ │ ├── pass4.json │ │ ├── round1.json │ │ ├── round2.json │ │ ├── round3.json │ │ ├── round4.json │ │ ├── round5.json │ │ ├── round6.json │ │ ├── round7.json │ │ ├── test_json.cpp │ │ └── unitester.cpp ├── util │ ├── CMakeLists.txt │ ├── any.h │ ├── asmap.cpp │ ├── asmap.h │ ├── batchpriority.cpp │ ├── batchpriority.h │ ├── bip32.cpp │ ├── bip32.h │ ├── bitdeque.h │ ├── bitset.h │ ├── byte_units.h │ ├── bytevectorhash.cpp │ ├── bytevectorhash.h │ ├── chaintype.cpp │ ├── chaintype.h │ ├── check.cpp │ ├── check.h │ ├── epochguard.h │ ├── exception.cpp │ ├── exception.h │ ├── exec.cpp │ ├── exec.h │ ├── fastrange.h │ ├── feefrac.cpp │ ├── feefrac.h │ ├── fs.cpp │ ├── fs.h │ ├── fs_helpers.cpp │ ├── fs_helpers.h │ ├── golombrice.h │ ├── hash_type.h │ ├── hasher.cpp │ ├── hasher.h │ ├── insert.h │ ├── macros.h │ ├── moneystr.cpp │ ├── moneystr.h │ ├── obfuscation.h │ ├── overflow.h │ ├── overloaded.h │ ├── rbf.cpp │ ├── rbf.h │ ├── readwritefile.cpp │ ├── readwritefile.h │ ├── result.h │ ├── serfloat.cpp │ ├── serfloat.h │ ├── signalinterrupt.cpp │ ├── signalinterrupt.h │ ├── sock.cpp │ ├── sock.h │ ├── strencodings.cpp │ ├── strencodings.h │ ├── string.cpp │ ├── string.h │ ├── subprocess.h │ ├── syserror.cpp │ ├── syserror.h │ ├── task_runner.h │ ├── thread.cpp │ ├── thread.h │ ├── threadinterrupt.cpp │ ├── threadinterrupt.h │ ├── threadnames.cpp │ ├── threadnames.h │ ├── time.cpp │ ├── time.h │ ├── tokenpipe.cpp │ ├── tokenpipe.h │ ├── trace.h │ ├── translation.h │ ├── types.h │ ├── ui_change_type.h │ ├── vecdeque.h │ └── vector.h ├── validation.cpp ├── validation.h ├── validationinterface.cpp ├── validationinterface.h ├── versionbits.cpp ├── versionbits.h ├── versionbits_impl.h ├── wallet │ ├── CMakeLists.txt │ ├── coincontrol.cpp │ ├── coincontrol.h │ ├── coinselection.cpp │ ├── coinselection.h │ ├── context.cpp │ ├── context.h │ ├── crypter.cpp │ ├── crypter.h │ ├── db.cpp │ ├── db.h │ ├── dump.cpp │ ├── dump.h │ ├── external_signer_scriptpubkeyman.cpp │ ├── external_signer_scriptpubkeyman.h │ ├── feebumper.cpp │ ├── feebumper.h │ ├── fees.cpp │ ├── fees.h │ ├── init.cpp │ ├── interfaces.cpp │ ├── load.cpp │ ├── load.h │ ├── migrate.cpp │ ├── migrate.h │ ├── receive.cpp │ ├── receive.h │ ├── rpc │ │ ├── addresses.cpp │ │ ├── backup.cpp │ │ ├── coins.cpp │ │ ├── encrypt.cpp │ │ ├── signmessage.cpp │ │ ├── spend.cpp │ │ ├── transactions.cpp │ │ ├── util.cpp │ │ ├── util.h │ │ ├── wallet.cpp │ │ └── wallet.h │ ├── scriptpubkeyman.cpp │ ├── scriptpubkeyman.h │ ├── spend.cpp │ ├── spend.h │ ├── sqlite.cpp │ ├── sqlite.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── coinselection_tests.cpp │ │ ├── coinselector_tests.cpp │ │ ├── db_tests.cpp │ │ ├── feebumper_tests.cpp │ │ ├── fuzz │ │ │ ├── CMakeLists.txt │ │ │ ├── coincontrol.cpp │ │ │ ├── coinselection.cpp │ │ │ ├── crypter.cpp │ │ │ ├── fees.cpp │ │ │ ├── scriptpubkeyman.cpp │ │ │ ├── spend.cpp │ │ │ └── wallet_bdb_parser.cpp │ │ ├── group_outputs_tests.cpp │ │ ├── init_test_fixture.cpp │ │ ├── init_test_fixture.h │ │ ├── init_tests.cpp │ │ ├── ismine_tests.cpp │ │ ├── psbt_wallet_tests.cpp │ │ ├── scriptpubkeyman_tests.cpp │ │ ├── spend_tests.cpp │ │ ├── util.cpp │ │ ├── util.h │ │ ├── wallet_crypto_tests.cpp │ │ ├── wallet_rpc_tests.cpp │ │ ├── wallet_test_fixture.cpp │ │ ├── wallet_test_fixture.h │ │ ├── wallet_tests.cpp │ │ ├── wallet_transaction_tests.cpp │ │ ├── walletdb_tests.cpp │ │ └── walletload_tests.cpp │ ├── transaction.cpp │ ├── transaction.h │ ├── types.h │ ├── wallet.cpp │ ├── wallet.h │ ├── walletdb.cpp │ ├── walletdb.h │ ├── wallettool.cpp │ ├── wallettool.h │ ├── walletutil.cpp │ └── walletutil.h ├── walletinitinterface.h └── zmq │ ├── CMakeLists.txt │ ├── zmqabstractnotifier.cpp │ ├── zmqabstractnotifier.h │ ├── zmqnotificationinterface.cpp │ ├── zmqnotificationinterface.h │ ├── zmqpublishnotifier.cpp │ ├── zmqpublishnotifier.h │ ├── zmqrpc.cpp │ ├── zmqrpc.h │ ├── zmqutil.cpp │ └── zmqutil.h ├── test ├── CMakeLists.txt ├── README.md ├── config.ini.in ├── functional │ ├── .gitignore │ ├── README.md │ ├── combine_logs.py │ ├── combined_log_template.html │ ├── create_cache.py │ ├── data │ │ ├── README.md │ │ ├── __init__.py │ │ ├── invalid_txs.py │ │ ├── mainnet_alt.json │ │ ├── rpc_bip67.json │ │ ├── rpc_decodescript.json │ │ ├── rpc_getblockstats.json │ │ ├── rpc_psbt.json │ │ └── util │ │ │ ├── bitcoin-util-test.json │ │ │ ├── blanktxv1.hex │ │ │ ├── blanktxv1.json │ │ │ ├── blanktxv2.hex │ │ │ ├── blanktxv2.json │ │ │ ├── tt-delin1-out.hex │ │ │ ├── tt-delin1-out.json │ │ │ ├── tt-delout1-out.hex │ │ │ ├── tt-delout1-out.json │ │ │ ├── tt-locktime317000-out.hex │ │ │ ├── tt-locktime317000-out.json │ │ │ ├── tx394b54bb.hex │ │ │ ├── txcreate1.hex │ │ │ ├── txcreate1.json │ │ │ ├── txcreate2.hex │ │ │ ├── txcreate2.json │ │ │ ├── txcreatedata1.hex │ │ │ ├── txcreatedata1.json │ │ │ ├── txcreatedata2.hex │ │ │ ├── txcreatedata2.json │ │ │ ├── txcreatedata_seq0.hex │ │ │ ├── txcreatedata_seq0.json │ │ │ ├── txcreatedata_seq1.hex │ │ │ ├── txcreatedata_seq1.json │ │ │ ├── txcreatemultisig1.hex │ │ │ ├── txcreatemultisig1.json │ │ │ ├── txcreatemultisig2.hex │ │ │ ├── txcreatemultisig2.json │ │ │ ├── txcreatemultisig3.hex │ │ │ ├── txcreatemultisig3.json │ │ │ ├── txcreatemultisig4.hex │ │ │ ├── txcreatemultisig4.json │ │ │ ├── txcreatemultisig5.json │ │ │ ├── txcreateoutpubkey1.hex │ │ │ ├── txcreateoutpubkey1.json │ │ │ ├── txcreateoutpubkey2.hex │ │ │ ├── txcreateoutpubkey2.json │ │ │ ├── txcreateoutpubkey3.hex │ │ │ ├── txcreateoutpubkey3.json │ │ │ ├── txcreatescript1.hex │ │ │ ├── txcreatescript1.json │ │ │ ├── txcreatescript2.hex │ │ │ ├── txcreatescript2.json │ │ │ ├── txcreatescript3.hex │ │ │ ├── txcreatescript3.json │ │ │ ├── txcreatescript4.hex │ │ │ ├── txcreatescript4.json │ │ │ ├── txcreatescript5.hex │ │ │ ├── txcreatescript6.hex │ │ │ ├── txcreatesignsegwit1.hex │ │ │ ├── txcreatesignv1.hex │ │ │ ├── txcreatesignv1.json │ │ │ ├── txcreatesignv2.hex │ │ │ ├── txreplace1.hex │ │ │ ├── txreplacenoinputs.hex │ │ │ ├── txreplaceomittedn.hex │ │ │ └── txreplacesingleinput.hex │ ├── example_test.py │ ├── feature_abortnode.py │ ├── feature_addrman.py │ ├── feature_anchors.py │ ├── feature_asmap.py │ ├── feature_assumeutxo.py │ ├── feature_assumevalid.py │ ├── feature_bind_extra.py │ ├── feature_bind_port_discover.py │ ├── feature_bind_port_externalip.py │ ├── feature_bip68_sequence.py │ ├── feature_block.py │ ├── feature_blocksdir.py │ ├── feature_blocksxor.py │ ├── feature_cltv.py │ ├── feature_coinstatsindex.py │ ├── feature_coinstatsindex_compatibility.py │ ├── feature_config_args.py │ ├── feature_csv_activation.py │ ├── feature_dbcrash.py │ ├── feature_dersig.py │ ├── feature_dirsymlinks.py │ ├── feature_discover.py │ ├── feature_fastprune.py │ ├── feature_fee_estimation.py │ ├── feature_filelock.py │ ├── feature_framework_miniwallet.py │ ├── feature_framework_startup_failures.py │ ├── feature_framework_unit_tests.py │ ├── feature_help.py │ ├── feature_includeconf.py │ ├── feature_index_prune.py │ ├── feature_init.py │ ├── feature_loadblock.py │ ├── feature_logging.py │ ├── feature_maxtipage.py │ ├── feature_maxuploadtarget.py │ ├── feature_minchainwork.py │ ├── feature_notifications.py │ ├── feature_nulldummy.py │ ├── feature_port.py │ ├── feature_posix_fs_permissions.py │ ├── feature_presegwit_node_upgrade.py │ ├── feature_proxy.py │ ├── feature_pruning.py │ ├── feature_rbf.py │ ├── feature_reindex.py │ ├── feature_reindex_init.py │ ├── feature_reindex_readonly.py │ ├── feature_remove_pruned_files_on_startup.py │ ├── feature_segwit.py │ ├── feature_settings.py │ ├── feature_shutdown.py │ ├── feature_signet.py │ ├── feature_startupnotify.py │ ├── feature_taproot.py │ ├── feature_uacomment.py │ ├── feature_unsupported_utxo_db.py │ ├── feature_utxo_set_hash.py │ ├── feature_versionbits_warning.py │ ├── interface_bitcoin_cli.py │ ├── interface_http.py │ ├── interface_ipc.py │ ├── interface_rest.py │ ├── interface_rpc.py │ ├── interface_usdt_coinselection.py │ ├── interface_usdt_mempool.py │ ├── interface_usdt_net.py │ ├── interface_usdt_utxocache.py │ ├── interface_usdt_validation.py │ ├── interface_zmq.py │ ├── mempool_accept.py │ ├── mempool_accept_wtxid.py │ ├── mempool_compatibility.py │ ├── mempool_datacarrier.py │ ├── mempool_dust.py │ ├── mempool_ephemeral_dust.py │ ├── mempool_expiry.py │ ├── mempool_limit.py │ ├── mempool_package_limits.py │ ├── mempool_package_onemore.py │ ├── mempool_package_rbf.py │ ├── mempool_packages.py │ ├── mempool_persist.py │ ├── mempool_reorg.py │ ├── mempool_resurrect.py │ ├── mempool_sigoplimit.py │ ├── mempool_spend_coinbase.py │ ├── mempool_truc.py │ ├── mempool_unbroadcast.py │ ├── mempool_updatefromblock.py │ ├── mining_basic.py │ ├── mining_getblocktemplate_longpoll.py │ ├── mining_mainnet.py │ ├── mining_prioritisetransaction.py │ ├── mining_template_verification.py │ ├── mocks │ │ ├── invalid_signer.py │ │ ├── multi_signers.py │ │ ├── no_signer.py │ │ └── signer.py │ ├── p2p_1p1c_network.py │ ├── p2p_add_connections.py │ ├── p2p_addr_relay.py │ ├── p2p_addrfetch.py │ ├── p2p_addrv2_relay.py │ ├── p2p_block_sync.py │ ├── p2p_blockfilters.py │ ├── p2p_blocksonly.py │ ├── p2p_compactblocks.py │ ├── p2p_compactblocks_blocksonly.py │ ├── p2p_compactblocks_hb.py │ ├── p2p_disconnect_ban.py │ ├── p2p_dns_seeds.py │ ├── p2p_eviction.py │ ├── p2p_feefilter.py │ ├── p2p_filter.py │ ├── p2p_fingerprint.py │ ├── p2p_getaddr_caching.py │ ├── p2p_getdata.py │ ├── p2p_handshake.py │ ├── p2p_headers_sync_with_minchainwork.py │ ├── p2p_i2p_ports.py │ ├── p2p_i2p_sessions.py │ ├── p2p_ibd_stalling.py │ ├── p2p_ibd_txrelay.py │ ├── p2p_initial_headers_sync.py │ ├── p2p_invalid_block.py │ ├── p2p_invalid_locator.py │ ├── p2p_invalid_messages.py │ ├── p2p_invalid_tx.py │ ├── p2p_leak.py │ ├── p2p_leak_tx.py │ ├── p2p_message_capture.py │ ├── p2p_mutated_blocks.py │ ├── p2p_net_deadlock.py │ ├── p2p_nobloomfilter_messages.py │ ├── p2p_node_network_limited.py │ ├── p2p_opportunistic_1p1c.py │ ├── p2p_orphan_handling.py │ ├── p2p_outbound_eviction.py │ ├── p2p_permissions.py │ ├── p2p_ping.py │ ├── p2p_seednode.py │ ├── p2p_segwit.py │ ├── p2p_sendheaders.py │ ├── p2p_sendtxrcncl.py │ ├── p2p_timeouts.py │ ├── p2p_tx_download.py │ ├── p2p_tx_privacy.py │ ├── p2p_unrequested_blocks.py │ ├── p2p_v2_encrypted.py │ ├── p2p_v2_misbehaving.py │ ├── p2p_v2_transport.py │ ├── rpc_bind.py │ ├── rpc_blockchain.py │ ├── rpc_createmultisig.py │ ├── rpc_decodescript.py │ ├── rpc_deprecated.py │ ├── rpc_deriveaddresses.py │ ├── rpc_dumptxoutset.py │ ├── rpc_estimatefee.py │ ├── rpc_generate.py │ ├── rpc_getblockfilter.py │ ├── rpc_getblockfrompeer.py │ ├── rpc_getblockstats.py │ ├── rpc_getchaintips.py │ ├── rpc_getdescriptoractivity.py │ ├── rpc_getdescriptorinfo.py │ ├── rpc_help.py │ ├── rpc_invalid_address_message.py │ ├── rpc_invalidateblock.py │ ├── rpc_mempool_info.py │ ├── rpc_misc.py │ ├── rpc_named_arguments.py │ ├── rpc_net.py │ ├── rpc_orphans.py │ ├── rpc_packages.py │ ├── rpc_preciousblock.py │ ├── rpc_psbt.py │ ├── rpc_rawtransaction.py │ ├── rpc_scanblocks.py │ ├── rpc_scantxoutset.py │ ├── rpc_setban.py │ ├── rpc_signer.py │ ├── rpc_signmessagewithprivkey.py │ ├── rpc_signrawtransactionwithkey.py │ ├── rpc_txoutproof.py │ ├── rpc_uptime.py │ ├── rpc_users.py │ ├── rpc_validateaddress.py │ ├── rpc_whitelist.py │ ├── test-shell.md │ ├── test_framework │ │ ├── __init__.py │ │ ├── address.py │ │ ├── authproxy.py │ │ ├── bip340_test_vectors.csv │ │ ├── blockfilter.py │ │ ├── blocktools.py │ │ ├── compressor.py │ │ ├── coverage.py │ │ ├── crypto │ │ │ ├── bip324_cipher.py │ │ │ ├── chacha20.py │ │ │ ├── ellswift.py │ │ │ ├── ellswift_decode_test_vectors.csv │ │ │ ├── hkdf.py │ │ │ ├── muhash.py │ │ │ ├── poly1305.py │ │ │ ├── ripemd160.py │ │ │ ├── secp256k1.py │ │ │ ├── siphash.py │ │ │ └── xswiftec_inv_test_vectors.csv │ │ ├── descriptors.py │ │ ├── key.py │ │ ├── mempool_util.py │ │ ├── messages.py │ │ ├── netutil.py │ │ ├── p2p.py │ │ ├── psbt.py │ │ ├── script.py │ │ ├── script_util.py │ │ ├── segwit_addr.py │ │ ├── socks5.py │ │ ├── test_framework.py │ │ ├── test_node.py │ │ ├── test_shell.py │ │ ├── util.py │ │ ├── v2_p2p.py │ │ ├── wallet.py │ │ └── wallet_util.py │ ├── test_runner.py │ ├── tool_bitcoin.py │ ├── tool_bitcoin_chainstate.py │ ├── tool_rpcauth.py │ ├── tool_signet_miner.py │ ├── tool_utils.py │ ├── tool_utxo_to_sqlite.py │ ├── tool_wallet.py │ ├── wallet_abandonconflict.py │ ├── wallet_address_types.py │ ├── wallet_anchor.py │ ├── wallet_assumeutxo.py │ ├── wallet_avoid_mixing_output_types.py │ ├── wallet_avoidreuse.py │ ├── wallet_backup.py │ ├── wallet_backwards_compatibility.py │ ├── wallet_balance.py │ ├── wallet_basic.py │ ├── wallet_blank.py │ ├── wallet_bumpfee.py │ ├── wallet_change_address.py │ ├── wallet_coinbase_category.py │ ├── wallet_conflicts.py │ ├── wallet_create_tx.py │ ├── wallet_createwallet.py │ ├── wallet_createwalletdescriptor.py │ ├── wallet_crosschain.py │ ├── wallet_descriptor.py │ ├── wallet_disable.py │ ├── wallet_encryption.py │ ├── wallet_fallbackfee.py │ ├── wallet_fast_rescan.py │ ├── wallet_fundrawtransaction.py │ ├── wallet_gethdkeys.py │ ├── wallet_groups.py │ ├── wallet_hd.py │ ├── wallet_importdescriptors.py │ ├── wallet_importprunedfunds.py │ ├── wallet_keypool.py │ ├── wallet_keypool_topup.py │ ├── wallet_labels.py │ ├── wallet_listdescriptors.py │ ├── wallet_listreceivedby.py │ ├── wallet_listsinceblock.py │ ├── wallet_listtransactions.py │ ├── wallet_migration.py │ ├── wallet_miniscript.py │ ├── wallet_miniscript_decaying_multisig_descriptor_psbt.py │ ├── wallet_multisig_descriptor_psbt.py │ ├── wallet_multiwallet.py │ ├── wallet_orphanedreward.py │ ├── wallet_reindex.py │ ├── wallet_reorgsrestore.py │ ├── wallet_rescan_unconfirmed.py │ ├── wallet_resendwallettransactions.py │ ├── wallet_send.py │ ├── wallet_sendall.py │ ├── wallet_sendmany.py │ ├── wallet_signer.py │ ├── wallet_signmessagewithaddress.py │ ├── wallet_signrawtransactionwithwallet.py │ ├── wallet_simulaterawtx.py │ ├── wallet_spend_unconfirmed.py │ ├── wallet_startup.py │ ├── wallet_taproot.py │ ├── wallet_timelock.py │ ├── wallet_transactiontime_rescan.py │ ├── wallet_txn_clone.py │ ├── wallet_txn_doublespend.py │ └── wallet_v3_txs.py ├── fuzz │ └── test_runner.py ├── get_previous_releases.py ├── lint │ ├── README.md │ ├── check-doc.py │ ├── commit-script-check.sh │ ├── git-subtree-check.sh │ ├── lint-circular-dependencies.py │ ├── lint-files.py │ ├── lint-include-guards.py │ ├── lint-includes.py │ ├── lint-locale-dependence.py │ ├── lint-python-dead-code.py │ ├── lint-python-utf8-encoding.py │ ├── lint-python.py │ ├── lint-qt-translation.py │ ├── lint-shell-locale.py │ ├── lint-shell.py │ ├── lint-spelling.py │ ├── lint-submodule.py │ ├── lint-tests.py │ ├── lint_ignore_dirs.py │ ├── spelling.ignore-words.txt │ └── test_runner │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ └── main.rs └── sanitizer_suppressions │ ├── lsan │ ├── tsan │ └── ubsan └── vcpkg.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | src/clientversion.cpp export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10.14 2 | -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/.style.yapf -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/.tx/config -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | See [doc/build-\*.md](/doc) 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /base contract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/base contract -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/lint/01_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/lint/01_install.sh -------------------------------------------------------------------------------- /ci/lint/06_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/lint/06_script.sh -------------------------------------------------------------------------------- /ci/lint_imagefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/lint_imagefile -------------------------------------------------------------------------------- /ci/retry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/retry/README.md -------------------------------------------------------------------------------- /ci/retry/retry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/retry/retry -------------------------------------------------------------------------------- /ci/test/00_setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/test/00_setup_env.sh -------------------------------------------------------------------------------- /ci/test/01_base_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/test/01_base_install.sh -------------------------------------------------------------------------------- /ci/test/03_test_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/test/03_test_script.sh -------------------------------------------------------------------------------- /ci/test/wrap-valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/test/wrap-valgrind.sh -------------------------------------------------------------------------------- /ci/test_imagefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/test_imagefile -------------------------------------------------------------------------------- /ci/test_run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/ci/test_run_all.sh -------------------------------------------------------------------------------- /cmake/ccache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/cmake/ccache.cmake -------------------------------------------------------------------------------- /cmake/crc32c.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/cmake/crc32c.cmake -------------------------------------------------------------------------------- /cmake/introspection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/cmake/introspection.cmake -------------------------------------------------------------------------------- /cmake/leveldb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/cmake/leveldb.cmake -------------------------------------------------------------------------------- /cmake/minisketch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/cmake/minisketch.cmake -------------------------------------------------------------------------------- /cmake/module/FindQt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/cmake/module/FindQt.cmake -------------------------------------------------------------------------------- /cmake/script/macos_zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/cmake/script/macos_zip.sh -------------------------------------------------------------------------------- /cmake/secp256k1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/cmake/secp256k1.cmake -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/asmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/asmap/README.md -------------------------------------------------------------------------------- /contrib/asmap/asmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/asmap/asmap.py -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/devtools/iwyu/bitcoin.core.imp: -------------------------------------------------------------------------------- 1 | # Nothing for now. 2 | [ 3 | ] 4 | -------------------------------------------------------------------------------- /contrib/devtools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/devtools/utils.py -------------------------------------------------------------------------------- /contrib/filter-lcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/filter-lcov.py -------------------------------------------------------------------------------- /contrib/guix/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/guix/INSTALL.md -------------------------------------------------------------------------------- /contrib/guix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/guix/README.md -------------------------------------------------------------------------------- /contrib/guix/guix-attest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/guix/guix-attest -------------------------------------------------------------------------------- /contrib/guix/guix-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/guix/guix-build -------------------------------------------------------------------------------- /contrib/guix/guix-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/guix/guix-clean -------------------------------------------------------------------------------- /contrib/guix/guix-codesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/guix/guix-codesign -------------------------------------------------------------------------------- /contrib/guix/guix-verify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/guix/guix-verify -------------------------------------------------------------------------------- /contrib/guix/manifest.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/guix/manifest.scm -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/bitcoind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/init/bitcoind.conf -------------------------------------------------------------------------------- /contrib/init/bitcoind.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/init/bitcoind.init -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/gen-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/macdeploy/gen-sdk -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/seeds/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/seeds/.gitignore -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/signet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/signet/README.md -------------------------------------------------------------------------------- /contrib/signet/getcoins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/signet/getcoins.py -------------------------------------------------------------------------------- /contrib/signet/miner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/signet/miner -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/tracing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/tracing/README.md -------------------------------------------------------------------------------- /contrib/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/valgrind.supp -------------------------------------------------------------------------------- /contrib/verify-commits/allow-incorrect-sha512-commits: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/verify-commits/allow-revsig-commits: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/verify-commits/allow-unclean-merge-commits: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | 437dfe1c26e752c280014a30f809e62c684ad99e 2 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-sha512-root-commit: -------------------------------------------------------------------------------- 1 | 309bf16257b2395ce502017be627186b749ee749 2 | -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /depends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/.gitignore -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/builders/netbsd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/builders/netbsd.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/gen_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/gen_id -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/freebsd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/hosts/freebsd.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/hosts/netbsd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/hosts/netbsd.mk -------------------------------------------------------------------------------- /depends/hosts/openbsd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/hosts/openbsd.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/capnp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages/capnp.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages/qt.mk -------------------------------------------------------------------------------- /depends/packages/sqlite.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages/sqlite.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /depends/toolchain.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/depends/toolchain.cmake.in -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/JSON-RPC-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/JSON-RPC-interface.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_doxygen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/README_doxygen.md -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/assumeutxo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/assumeutxo.md -------------------------------------------------------------------------------- /doc/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/benchmarking.md -------------------------------------------------------------------------------- /doc/bips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/bips.md -------------------------------------------------------------------------------- /doc/bitcoin-conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/bitcoin-conf.md -------------------------------------------------------------------------------- /doc/build-freebsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/build-freebsd.md -------------------------------------------------------------------------------- /doc/build-netbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/build-netbsd.md -------------------------------------------------------------------------------- /doc/build-openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/build-openbsd.md -------------------------------------------------------------------------------- /doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/build-osx.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/build-windows-msvc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/build-windows-msvc.md -------------------------------------------------------------------------------- /doc/build-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/build-windows.md -------------------------------------------------------------------------------- /doc/cjdns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/cjdns.md -------------------------------------------------------------------------------- /doc/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/dependencies.md -------------------------------------------------------------------------------- /doc/descriptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/descriptors.md -------------------------------------------------------------------------------- /doc/design/assumeutxo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/design/assumeutxo.md -------------------------------------------------------------------------------- /doc/design/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/design/libraries.md -------------------------------------------------------------------------------- /doc/design/multiprocess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/design/multiprocess.md -------------------------------------------------------------------------------- /doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/developer-notes.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/external-signer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/external-signer.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/fuzzing.md -------------------------------------------------------------------------------- /doc/guix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/guix.md -------------------------------------------------------------------------------- /doc/i2p.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/i2p.md -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/man/bitcoin-cli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/man/bitcoin-cli.1 -------------------------------------------------------------------------------- /doc/man/bitcoin-qt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/man/bitcoin-qt.1 -------------------------------------------------------------------------------- /doc/man/bitcoin-tx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/man/bitcoin-tx.1 -------------------------------------------------------------------------------- /doc/man/bitcoin-util.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/man/bitcoin-util.1 -------------------------------------------------------------------------------- /doc/man/bitcoin-wallet.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/man/bitcoin-wallet.1 -------------------------------------------------------------------------------- /doc/man/bitcoin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/man/bitcoin.1 -------------------------------------------------------------------------------- /doc/man/bitcoind.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/man/bitcoind.1 -------------------------------------------------------------------------------- /doc/managing-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/managing-wallets.md -------------------------------------------------------------------------------- /doc/multiprocess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/multiprocess.md -------------------------------------------------------------------------------- /doc/multisig-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/multisig-tutorial.md -------------------------------------------------------------------------------- /doc/p2p-bad-ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/p2p-bad-ports.md -------------------------------------------------------------------------------- /doc/policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/policy/README.md -------------------------------------------------------------------------------- /doc/policy/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/policy/packages.md -------------------------------------------------------------------------------- /doc/productivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/productivity.md -------------------------------------------------------------------------------- /doc/psbt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/psbt.md -------------------------------------------------------------------------------- /doc/reduce-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/reduce-memory.md -------------------------------------------------------------------------------- /doc/reduce-traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/reduce-traffic.md -------------------------------------------------------------------------------- /doc/release-notes/release-notes-0.3.16.md: -------------------------------------------------------------------------------- 1 | Never released. 2 | -------------------------------------------------------------------------------- /doc/release-notes/release-notes-0.6.1.md: -------------------------------------------------------------------------------- 1 | Never released 2 | 3 | -------------------------------------------------------------------------------- /doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/tracing.md -------------------------------------------------------------------------------- /doc/translation_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/translation_process.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /libbitcoinkernel.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/libbitcoinkernel.pc.in -------------------------------------------------------------------------------- /share/pixmaps/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/share/pixmaps/bitcoin.ico -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/qt/translate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/share/qt/translate.cmake -------------------------------------------------------------------------------- /share/rpcauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/share/rpcauth/README.md -------------------------------------------------------------------------------- /share/rpcauth/rpcauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/share/rpcauth/rpcauth.py -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/.clang-tidy -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/addrdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/addrdb.cpp -------------------------------------------------------------------------------- /src/addrdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/addrdb.h -------------------------------------------------------------------------------- /src/addresstype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/addresstype.cpp -------------------------------------------------------------------------------- /src/addresstype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/addresstype.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/addrman_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/addrman_impl.h -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/attributes.h -------------------------------------------------------------------------------- /src/banman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/banman.cpp -------------------------------------------------------------------------------- /src/banman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/banman.h -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bech32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bech32.cpp -------------------------------------------------------------------------------- /src/bech32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bech32.h -------------------------------------------------------------------------------- /src/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/CMakeLists.txt -------------------------------------------------------------------------------- /src/bench/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/addrman.cpp -------------------------------------------------------------------------------- /src/bench/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/base58.cpp -------------------------------------------------------------------------------- /src/bench/bech32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/bech32.cpp -------------------------------------------------------------------------------- /src/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/bench.cpp -------------------------------------------------------------------------------- /src/bench/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/bench.h -------------------------------------------------------------------------------- /src/bench/bip324_ecdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/bip324_ecdh.cpp -------------------------------------------------------------------------------- /src/bench/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/chacha20.cpp -------------------------------------------------------------------------------- /src/bench/checkblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/checkblock.cpp -------------------------------------------------------------------------------- /src/bench/checkqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/checkqueue.cpp -------------------------------------------------------------------------------- /src/bench/connectblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/connectblock.cpp -------------------------------------------------------------------------------- /src/bench/crypto_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/crypto_hash.cpp -------------------------------------------------------------------------------- /src/bench/descriptors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/descriptors.cpp -------------------------------------------------------------------------------- /src/bench/ellswift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/ellswift.cpp -------------------------------------------------------------------------------- /src/bench/examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/examples.cpp -------------------------------------------------------------------------------- /src/bench/gcs_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/gcs_filter.cpp -------------------------------------------------------------------------------- /src/bench/hashpadding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/hashpadding.cpp -------------------------------------------------------------------------------- /src/bench/lockedpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/lockedpool.cpp -------------------------------------------------------------------------------- /src/bench/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/logging.cpp -------------------------------------------------------------------------------- /src/bench/merkle_root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/merkle_root.cpp -------------------------------------------------------------------------------- /src/bench/nanobench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/nanobench.cpp -------------------------------------------------------------------------------- /src/bench/nanobench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/nanobench.h -------------------------------------------------------------------------------- /src/bench/obfuscation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/obfuscation.cpp -------------------------------------------------------------------------------- /src/bench/parse_hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/parse_hex.cpp -------------------------------------------------------------------------------- /src/bench/poly1305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/poly1305.cpp -------------------------------------------------------------------------------- /src/bench/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/pool.cpp -------------------------------------------------------------------------------- /src/bench/prevector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/prevector.cpp -------------------------------------------------------------------------------- /src/bench/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/random.cpp -------------------------------------------------------------------------------- /src/bench/rollingbloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/rollingbloom.cpp -------------------------------------------------------------------------------- /src/bench/rpc_mempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/rpc_mempool.cpp -------------------------------------------------------------------------------- /src/bench/strencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/strencodings.cpp -------------------------------------------------------------------------------- /src/bench/txgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/txgraph.cpp -------------------------------------------------------------------------------- /src/bench/txorphanage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/txorphanage.cpp -------------------------------------------------------------------------------- /src/bench/util_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bench/util_time.cpp -------------------------------------------------------------------------------- /src/bip324.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bip324.cpp -------------------------------------------------------------------------------- /src/bip324.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bip324.h -------------------------------------------------------------------------------- /src/bitcoin-chainstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-chainstate.cpp -------------------------------------------------------------------------------- /src/bitcoin-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-cli-res.rc -------------------------------------------------------------------------------- /src/bitcoin-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-cli.cpp -------------------------------------------------------------------------------- /src/bitcoin-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-res.rc -------------------------------------------------------------------------------- /src/bitcoin-tx-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-tx-res.rc -------------------------------------------------------------------------------- /src/bitcoin-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-tx.cpp -------------------------------------------------------------------------------- /src/bitcoin-util-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-util-res.rc -------------------------------------------------------------------------------- /src/bitcoin-util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-util.cpp -------------------------------------------------------------------------------- /src/bitcoin-wallet-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-wallet-res.rc -------------------------------------------------------------------------------- /src/bitcoin-wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin-wallet.cpp -------------------------------------------------------------------------------- /src/bitcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoin.cpp -------------------------------------------------------------------------------- /src/bitcoind-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoind-res.rc -------------------------------------------------------------------------------- /src/bitcoind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/bitcoind.cpp -------------------------------------------------------------------------------- /src/blockencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/blockencodings.cpp -------------------------------------------------------------------------------- /src/blockencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/blockencodings.h -------------------------------------------------------------------------------- /src/blockfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/blockfilter.cpp -------------------------------------------------------------------------------- /src/blockfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/blockfilter.h -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/cluster_linearize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/cluster_linearize.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/common/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/args.cpp -------------------------------------------------------------------------------- /src/common/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/args.h -------------------------------------------------------------------------------- /src/common/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/bloom.cpp -------------------------------------------------------------------------------- /src/common/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/bloom.h -------------------------------------------------------------------------------- /src/common/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/config.cpp -------------------------------------------------------------------------------- /src/common/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/init.cpp -------------------------------------------------------------------------------- /src/common/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/init.h -------------------------------------------------------------------------------- /src/common/interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/interfaces.cpp -------------------------------------------------------------------------------- /src/common/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/messages.cpp -------------------------------------------------------------------------------- /src/common/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/messages.h -------------------------------------------------------------------------------- /src/common/netif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/netif.cpp -------------------------------------------------------------------------------- /src/common/netif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/netif.h -------------------------------------------------------------------------------- /src/common/pcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/pcp.cpp -------------------------------------------------------------------------------- /src/common/pcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/pcp.h -------------------------------------------------------------------------------- /src/common/run_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/run_command.cpp -------------------------------------------------------------------------------- /src/common/run_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/run_command.h -------------------------------------------------------------------------------- /src/common/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/settings.cpp -------------------------------------------------------------------------------- /src/common/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/settings.h -------------------------------------------------------------------------------- /src/common/signmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/signmessage.cpp -------------------------------------------------------------------------------- /src/common/signmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/signmessage.h -------------------------------------------------------------------------------- /src/common/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/system.cpp -------------------------------------------------------------------------------- /src/common/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/system.h -------------------------------------------------------------------------------- /src/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/types.h -------------------------------------------------------------------------------- /src/common/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/url.cpp -------------------------------------------------------------------------------- /src/common/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/common/url.h -------------------------------------------------------------------------------- /src/compat/assumptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/compat/assumptions.h -------------------------------------------------------------------------------- /src/compat/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/compat/byteswap.h -------------------------------------------------------------------------------- /src/compat/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/compat/compat.h -------------------------------------------------------------------------------- /src/compat/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/compat/cpuid.h -------------------------------------------------------------------------------- /src/compat/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/compat/endian.h -------------------------------------------------------------------------------- /src/compat/stdin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/compat/stdin.cpp -------------------------------------------------------------------------------- /src/compat/stdin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/compat/stdin.h -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/consensus/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/consensus/amount.h -------------------------------------------------------------------------------- /src/consensus/consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/consensus/consensus.h -------------------------------------------------------------------------------- /src/consensus/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/consensus/merkle.cpp -------------------------------------------------------------------------------- /src/consensus/merkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/consensus/merkle.h -------------------------------------------------------------------------------- /src/consensus/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/consensus/params.h -------------------------------------------------------------------------------- /src/consensus/tx_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/consensus/tx_check.cpp -------------------------------------------------------------------------------- /src/consensus/tx_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/consensus/tx_check.h -------------------------------------------------------------------------------- /src/consensus/tx_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/consensus/tx_verify.h -------------------------------------------------------------------------------- /src/consensus/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/consensus/validation.h -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/core_memusage.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crc32c/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crc32c/.clang-format -------------------------------------------------------------------------------- /src/crc32c/.clang_complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crc32c/.clang_complete -------------------------------------------------------------------------------- /src/crc32c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crc32c/.gitignore -------------------------------------------------------------------------------- /src/crc32c/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crc32c/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crc32c/AUTHORS -------------------------------------------------------------------------------- /src/crc32c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crc32c/CMakeLists.txt -------------------------------------------------------------------------------- /src/crc32c/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crc32c/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/crc32c/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crc32c/LICENSE -------------------------------------------------------------------------------- /src/crc32c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crc32c/README.md -------------------------------------------------------------------------------- /src/crc32c/src/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crc32c/src/crc32c.cc -------------------------------------------------------------------------------- /src/crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/CMakeLists.txt -------------------------------------------------------------------------------- /src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/aes.cpp -------------------------------------------------------------------------------- /src/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/aes.h -------------------------------------------------------------------------------- /src/crypto/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/chacha20.cpp -------------------------------------------------------------------------------- /src/crypto/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/chacha20.h -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/ctaes/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/ctaes/COPYING -------------------------------------------------------------------------------- /src/crypto/ctaes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/ctaes/README.md -------------------------------------------------------------------------------- /src/crypto/ctaes/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/ctaes/bench.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/ctaes/ctaes.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/ctaes/ctaes.h -------------------------------------------------------------------------------- /src/crypto/ctaes/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/ctaes/test.c -------------------------------------------------------------------------------- /src/crypto/hex_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/hex_base.cpp -------------------------------------------------------------------------------- /src/crypto/hex_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/hex_base.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/muhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/muhash.cpp -------------------------------------------------------------------------------- /src/crypto/muhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/muhash.h -------------------------------------------------------------------------------- /src/crypto/poly1305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/poly1305.cpp -------------------------------------------------------------------------------- /src/crypto/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/poly1305.h -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha256_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha256_avx2.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_sse4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha256_sse4.cpp -------------------------------------------------------------------------------- /src/crypto/sha3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha3.cpp -------------------------------------------------------------------------------- /src/crypto/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha3.h -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/crypto/siphash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/siphash.cpp -------------------------------------------------------------------------------- /src/crypto/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/crypto/siphash.h -------------------------------------------------------------------------------- /src/cuckoocache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/cuckoocache.h -------------------------------------------------------------------------------- /src/dbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/dbwrapper.cpp -------------------------------------------------------------------------------- /src/dbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/dbwrapper.h -------------------------------------------------------------------------------- /src/deploymentinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/deploymentinfo.cpp -------------------------------------------------------------------------------- /src/deploymentinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/deploymentinfo.h -------------------------------------------------------------------------------- /src/deploymentstatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/deploymentstatus.cpp -------------------------------------------------------------------------------- /src/deploymentstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/deploymentstatus.h -------------------------------------------------------------------------------- /src/dummywallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/dummywallet.cpp -------------------------------------------------------------------------------- /src/external_signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/external_signer.cpp -------------------------------------------------------------------------------- /src/external_signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/external_signer.h -------------------------------------------------------------------------------- /src/flatfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/flatfile.cpp -------------------------------------------------------------------------------- /src/flatfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/flatfile.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/headerssync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/headerssync.cpp -------------------------------------------------------------------------------- /src/headerssync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/headerssync.h -------------------------------------------------------------------------------- /src/httprpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/httprpc.cpp -------------------------------------------------------------------------------- /src/httprpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/httprpc.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/i2p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/i2p.cpp -------------------------------------------------------------------------------- /src/i2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/i2p.h -------------------------------------------------------------------------------- /src/index/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/index/base.cpp -------------------------------------------------------------------------------- /src/index/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/index/base.h -------------------------------------------------------------------------------- /src/index/coinstatsindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/index/coinstatsindex.h -------------------------------------------------------------------------------- /src/index/disktxpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/index/disktxpos.h -------------------------------------------------------------------------------- /src/index/txindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/index/txindex.cpp -------------------------------------------------------------------------------- /src/index/txindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/index/txindex.h -------------------------------------------------------------------------------- /src/indirectmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/indirectmap.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/init.h -------------------------------------------------------------------------------- /src/init/bitcoin-gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/init/bitcoin-gui.cpp -------------------------------------------------------------------------------- /src/init/bitcoin-node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/init/bitcoin-node.cpp -------------------------------------------------------------------------------- /src/init/bitcoin-qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/init/bitcoin-qt.cpp -------------------------------------------------------------------------------- /src/init/bitcoind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/init/bitcoind.cpp -------------------------------------------------------------------------------- /src/init/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/init/common.cpp -------------------------------------------------------------------------------- /src/init/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/init/common.h -------------------------------------------------------------------------------- /src/interfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/README.md -------------------------------------------------------------------------------- /src/interfaces/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/chain.h -------------------------------------------------------------------------------- /src/interfaces/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/echo.h -------------------------------------------------------------------------------- /src/interfaces/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/handler.h -------------------------------------------------------------------------------- /src/interfaces/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/init.h -------------------------------------------------------------------------------- /src/interfaces/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/ipc.h -------------------------------------------------------------------------------- /src/interfaces/mining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/mining.h -------------------------------------------------------------------------------- /src/interfaces/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/node.h -------------------------------------------------------------------------------- /src/interfaces/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/types.h -------------------------------------------------------------------------------- /src/interfaces/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/interfaces/wallet.h -------------------------------------------------------------------------------- /src/ipc/.clang-tidy.in: -------------------------------------------------------------------------------- 1 | Checks: ' 2 | -clang-analyzer-core.UndefinedBinaryOperatorResult, 3 | ' 4 | -------------------------------------------------------------------------------- /src/ipc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/CMakeLists.txt -------------------------------------------------------------------------------- /src/ipc/capnp/common.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/common.capnp -------------------------------------------------------------------------------- /src/ipc/capnp/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/context.h -------------------------------------------------------------------------------- /src/ipc/capnp/echo-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/echo-types.h -------------------------------------------------------------------------------- /src/ipc/capnp/echo.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/echo.capnp -------------------------------------------------------------------------------- /src/ipc/capnp/init-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/init-types.h -------------------------------------------------------------------------------- /src/ipc/capnp/init.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/init.capnp -------------------------------------------------------------------------------- /src/ipc/capnp/mining.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/mining.capnp -------------------------------------------------------------------------------- /src/ipc/capnp/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/mining.cpp -------------------------------------------------------------------------------- /src/ipc/capnp/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/protocol.cpp -------------------------------------------------------------------------------- /src/ipc/capnp/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/capnp/protocol.h -------------------------------------------------------------------------------- /src/ipc/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/context.h -------------------------------------------------------------------------------- /src/ipc/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/exception.h -------------------------------------------------------------------------------- /src/ipc/interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/interfaces.cpp -------------------------------------------------------------------------------- /src/ipc/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/process.cpp -------------------------------------------------------------------------------- /src/ipc/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/process.h -------------------------------------------------------------------------------- /src/ipc/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/ipc/protocol.h -------------------------------------------------------------------------------- /src/kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/CMakeLists.txt -------------------------------------------------------------------------------- /src/kernel/caches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/caches.h -------------------------------------------------------------------------------- /src/kernel/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/chain.cpp -------------------------------------------------------------------------------- /src/kernel/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/chain.h -------------------------------------------------------------------------------- /src/kernel/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/chainparams.cpp -------------------------------------------------------------------------------- /src/kernel/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/chainparams.h -------------------------------------------------------------------------------- /src/kernel/checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/checks.cpp -------------------------------------------------------------------------------- /src/kernel/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/checks.h -------------------------------------------------------------------------------- /src/kernel/coinstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/coinstats.cpp -------------------------------------------------------------------------------- /src/kernel/coinstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/coinstats.h -------------------------------------------------------------------------------- /src/kernel/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/context.cpp -------------------------------------------------------------------------------- /src/kernel/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/context.h -------------------------------------------------------------------------------- /src/kernel/cs_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/cs_main.cpp -------------------------------------------------------------------------------- /src/kernel/cs_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/cs_main.h -------------------------------------------------------------------------------- /src/kernel/mempool_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/mempool_entry.h -------------------------------------------------------------------------------- /src/kernel/warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/kernel/warning.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/key.h -------------------------------------------------------------------------------- /src/key_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/key_io.cpp -------------------------------------------------------------------------------- /src/key_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/key_io.h -------------------------------------------------------------------------------- /src/leveldb/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/.appveyor.yml -------------------------------------------------------------------------------- /src/leveldb/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/.clang-format -------------------------------------------------------------------------------- /src/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/.gitignore -------------------------------------------------------------------------------- /src/leveldb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/.travis.yml -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/CMakeLists.txt -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/TODO -------------------------------------------------------------------------------- /src/leveldb/cmake/leveldbConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/leveldbTargets.cmake") 2 | -------------------------------------------------------------------------------- /src/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/doc/impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/doc/impl.md -------------------------------------------------------------------------------- /src/leveldb/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/doc/index.md -------------------------------------------------------------------------------- /src/leveldb/port/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/port/README.md -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/table/block.cc -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/table/format.h -------------------------------------------------------------------------------- /src/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/table/merger.h -------------------------------------------------------------------------------- /src/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/table/table.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/coding.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/logging.h -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/leveldb/util/status.cc -------------------------------------------------------------------------------- /src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/logging.cpp -------------------------------------------------------------------------------- /src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/logging.h -------------------------------------------------------------------------------- /src/logging/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/logging/timer.h -------------------------------------------------------------------------------- /src/mapport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/mapport.cpp -------------------------------------------------------------------------------- /src/mapport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/mapport.h -------------------------------------------------------------------------------- /src/memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/memusage.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/minisketch/.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/minisketch/.cirrus.yml -------------------------------------------------------------------------------- /src/minisketch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/minisketch/.gitignore -------------------------------------------------------------------------------- /src/minisketch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/minisketch/LICENSE -------------------------------------------------------------------------------- /src/minisketch/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/minisketch/Makefile.am -------------------------------------------------------------------------------- /src/minisketch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/minisketch/README.md -------------------------------------------------------------------------------- /src/minisketch/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/minisketch/autogen.sh -------------------------------------------------------------------------------- /src/minisketch/doc/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/minisketch/doc/math.md -------------------------------------------------------------------------------- /src/minisketch/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/minisketch/sources.mk -------------------------------------------------------------------------------- /src/minisketch/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/minisketch/src/util.h -------------------------------------------------------------------------------- /src/musig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/musig.cpp -------------------------------------------------------------------------------- /src/musig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/musig.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/net.h -------------------------------------------------------------------------------- /src/net_permissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/net_permissions.cpp -------------------------------------------------------------------------------- /src/net_permissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/net_permissions.h -------------------------------------------------------------------------------- /src/net_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/net_processing.cpp -------------------------------------------------------------------------------- /src/net_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/net_processing.h -------------------------------------------------------------------------------- /src/net_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/net_types.cpp -------------------------------------------------------------------------------- /src/net_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/net_types.h -------------------------------------------------------------------------------- /src/netaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/netaddress.cpp -------------------------------------------------------------------------------- /src/netaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/netaddress.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/netgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/netgroup.cpp -------------------------------------------------------------------------------- /src/netgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/netgroup.h -------------------------------------------------------------------------------- /src/netmessagemaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/netmessagemaker.h -------------------------------------------------------------------------------- /src/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/README.md -------------------------------------------------------------------------------- /src/node/abort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/abort.cpp -------------------------------------------------------------------------------- /src/node/abort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/abort.h -------------------------------------------------------------------------------- /src/node/blockstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/blockstorage.cpp -------------------------------------------------------------------------------- /src/node/blockstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/blockstorage.h -------------------------------------------------------------------------------- /src/node/caches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/caches.cpp -------------------------------------------------------------------------------- /src/node/caches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/caches.h -------------------------------------------------------------------------------- /src/node/chainstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/chainstate.cpp -------------------------------------------------------------------------------- /src/node/chainstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/chainstate.h -------------------------------------------------------------------------------- /src/node/coin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/coin.cpp -------------------------------------------------------------------------------- /src/node/coin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/coin.h -------------------------------------------------------------------------------- /src/node/coins_view_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/coins_view_args.h -------------------------------------------------------------------------------- /src/node/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/context.cpp -------------------------------------------------------------------------------- /src/node/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/context.h -------------------------------------------------------------------------------- /src/node/database_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/database_args.cpp -------------------------------------------------------------------------------- /src/node/database_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/database_args.h -------------------------------------------------------------------------------- /src/node/eviction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/eviction.cpp -------------------------------------------------------------------------------- /src/node/eviction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/eviction.h -------------------------------------------------------------------------------- /src/node/interface_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/interface_ui.cpp -------------------------------------------------------------------------------- /src/node/interface_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/interface_ui.h -------------------------------------------------------------------------------- /src/node/interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/interfaces.cpp -------------------------------------------------------------------------------- /src/node/mempool_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/mempool_args.cpp -------------------------------------------------------------------------------- /src/node/mempool_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/mempool_args.h -------------------------------------------------------------------------------- /src/node/mempool_persist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/mempool_persist.h -------------------------------------------------------------------------------- /src/node/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/miner.cpp -------------------------------------------------------------------------------- /src/node/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/miner.h -------------------------------------------------------------------------------- /src/node/mini_miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/mini_miner.cpp -------------------------------------------------------------------------------- /src/node/mini_miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/mini_miner.h -------------------------------------------------------------------------------- /src/node/peerman_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/peerman_args.cpp -------------------------------------------------------------------------------- /src/node/peerman_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/peerman_args.h -------------------------------------------------------------------------------- /src/node/psbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/psbt.cpp -------------------------------------------------------------------------------- /src/node/psbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/psbt.h -------------------------------------------------------------------------------- /src/node/timeoffsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/timeoffsets.cpp -------------------------------------------------------------------------------- /src/node/timeoffsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/timeoffsets.h -------------------------------------------------------------------------------- /src/node/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/transaction.h -------------------------------------------------------------------------------- /src/node/txorphanage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/txorphanage.h -------------------------------------------------------------------------------- /src/node/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/types.h -------------------------------------------------------------------------------- /src/node/warnings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/warnings.cpp -------------------------------------------------------------------------------- /src/node/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/node/warnings.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/outputtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/outputtype.cpp -------------------------------------------------------------------------------- /src/outputtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/outputtype.h -------------------------------------------------------------------------------- /src/policy/feerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/feerate.cpp -------------------------------------------------------------------------------- /src/policy/feerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/feerate.h -------------------------------------------------------------------------------- /src/policy/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/fees.cpp -------------------------------------------------------------------------------- /src/policy/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/fees.h -------------------------------------------------------------------------------- /src/policy/fees_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/fees_args.h -------------------------------------------------------------------------------- /src/policy/packages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/packages.cpp -------------------------------------------------------------------------------- /src/policy/packages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/packages.h -------------------------------------------------------------------------------- /src/policy/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/policy.cpp -------------------------------------------------------------------------------- /src/policy/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/policy.h -------------------------------------------------------------------------------- /src/policy/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/rbf.cpp -------------------------------------------------------------------------------- /src/policy/rbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/rbf.h -------------------------------------------------------------------------------- /src/policy/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/settings.cpp -------------------------------------------------------------------------------- /src/policy/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/policy/settings.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/prevector.h -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/psbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/psbt.cpp -------------------------------------------------------------------------------- /src/psbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/psbt.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/CMakeLists.txt -------------------------------------------------------------------------------- /src/qt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/README.md -------------------------------------------------------------------------------- /src/qt/bantablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/bantablemodel.h -------------------------------------------------------------------------------- /src/qt/bitcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/bitcoin.cpp -------------------------------------------------------------------------------- /src/qt/bitcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/bitcoin.h -------------------------------------------------------------------------------- /src/qt/bitcoin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/bitcoin.qrc -------------------------------------------------------------------------------- /src/qt/bitcoingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/bitcoingui.cpp -------------------------------------------------------------------------------- /src/qt/bitcoingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/bitcoingui.h -------------------------------------------------------------------------------- /src/qt/bitcoinunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/bitcoinunits.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/bitcoinunits.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/forms/intro.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/forms/intro.ui -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/initexecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/initexecutor.cpp -------------------------------------------------------------------------------- /src/qt/initexecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/initexecutor.h -------------------------------------------------------------------------------- /src/qt/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/intro.cpp -------------------------------------------------------------------------------- /src/qt/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/intro.h -------------------------------------------------------------------------------- /src/qt/macos_appnap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/macos_appnap.h -------------------------------------------------------------------------------- /src/qt/macos_appnap.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/macos_appnap.mm -------------------------------------------------------------------------------- /src/qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/main.cpp -------------------------------------------------------------------------------- /src/qt/modaloverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/modaloverlay.cpp -------------------------------------------------------------------------------- /src/qt/modaloverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/modaloverlay.h -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/paymentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/paymentserver.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/qrimagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/qrimagewidget.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/res/src/mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/res/src/mine.svg -------------------------------------------------------------------------------- /src/qt/res/src/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/res/src/qt.svg -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/test/apptests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/test/apptests.h -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/test/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/test/util.cpp -------------------------------------------------------------------------------- /src/qt/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/test/util.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/random.h -------------------------------------------------------------------------------- /src/randomenv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/randomenv.cpp -------------------------------------------------------------------------------- /src/randomenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/randomenv.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/rest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rest.h -------------------------------------------------------------------------------- /src/rpc/blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/blockchain.cpp -------------------------------------------------------------------------------- /src/rpc/blockchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/blockchain.h -------------------------------------------------------------------------------- /src/rpc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/client.cpp -------------------------------------------------------------------------------- /src/rpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/client.h -------------------------------------------------------------------------------- /src/rpc/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/fees.cpp -------------------------------------------------------------------------------- /src/rpc/mempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/mempool.cpp -------------------------------------------------------------------------------- /src/rpc/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/mempool.h -------------------------------------------------------------------------------- /src/rpc/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/mining.cpp -------------------------------------------------------------------------------- /src/rpc/mining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/mining.h -------------------------------------------------------------------------------- /src/rpc/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/net.cpp -------------------------------------------------------------------------------- /src/rpc/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/node.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/protocol.h -------------------------------------------------------------------------------- /src/rpc/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/register.h -------------------------------------------------------------------------------- /src/rpc/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/request.cpp -------------------------------------------------------------------------------- /src/rpc/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/request.h -------------------------------------------------------------------------------- /src/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/server.cpp -------------------------------------------------------------------------------- /src/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/server.h -------------------------------------------------------------------------------- /src/rpc/server_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/server_util.cpp -------------------------------------------------------------------------------- /src/rpc/server_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/server_util.h -------------------------------------------------------------------------------- /src/rpc/signmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/signmessage.cpp -------------------------------------------------------------------------------- /src/rpc/txoutproof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/txoutproof.cpp -------------------------------------------------------------------------------- /src/rpc/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/util.cpp -------------------------------------------------------------------------------- /src/rpc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/rpc/util.h -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/script/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/descriptor.h -------------------------------------------------------------------------------- /src/script/keyorigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/keyorigin.h -------------------------------------------------------------------------------- /src/script/miniscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/miniscript.h -------------------------------------------------------------------------------- /src/script/parsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/parsing.cpp -------------------------------------------------------------------------------- /src/script/parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/parsing.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/solver.cpp -------------------------------------------------------------------------------- /src/script/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/script/solver.h -------------------------------------------------------------------------------- /src/secp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/secp256k1/COPYING -------------------------------------------------------------------------------- /src/secp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/secp256k1/README.md -------------------------------------------------------------------------------- /src/secp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /src/secp256k1/ci/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/secp256k1/ci/ci.sh -------------------------------------------------------------------------------- /src/semaphore_grant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/semaphore_grant.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/signet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/signet.cpp -------------------------------------------------------------------------------- /src/signet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/signet.h -------------------------------------------------------------------------------- /src/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/span.h -------------------------------------------------------------------------------- /src/streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/streams.cpp -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/support/cleanse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/support/cleanse.cpp -------------------------------------------------------------------------------- /src/support/cleanse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/support/cleanse.h -------------------------------------------------------------------------------- /src/support/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/support/events.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/data/asmap.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/data/asmap.raw -------------------------------------------------------------------------------- /src/test/fs_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fs_tests.cpp -------------------------------------------------------------------------------- /src/test/fuzz/asmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/asmap.cpp -------------------------------------------------------------------------------- /src/test/fuzz/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/block.cpp -------------------------------------------------------------------------------- /src/test/fuzz/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/chain.cpp -------------------------------------------------------------------------------- /src/test/fuzz/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/fees.cpp -------------------------------------------------------------------------------- /src/test/fuzz/float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/float.cpp -------------------------------------------------------------------------------- /src/test/fuzz/fuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/fuzz.cpp -------------------------------------------------------------------------------- /src/test/fuzz/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/fuzz.h -------------------------------------------------------------------------------- /src/test/fuzz/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/hex.cpp -------------------------------------------------------------------------------- /src/test/fuzz/i2p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/i2p.cpp -------------------------------------------------------------------------------- /src/test/fuzz/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/key.cpp -------------------------------------------------------------------------------- /src/test/fuzz/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/net.cpp -------------------------------------------------------------------------------- /src/test/fuzz/pcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/pcp.cpp -------------------------------------------------------------------------------- /src/test/fuzz/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/pow.cpp -------------------------------------------------------------------------------- /src/test/fuzz/psbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/psbt.cpp -------------------------------------------------------------------------------- /src/test/fuzz/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/rbf.cpp -------------------------------------------------------------------------------- /src/test/fuzz/rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/rpc.cpp -------------------------------------------------------------------------------- /src/test/fuzz/span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/span.cpp -------------------------------------------------------------------------------- /src/test/fuzz/tx_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/tx_in.cpp -------------------------------------------------------------------------------- /src/test/fuzz/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/util.cpp -------------------------------------------------------------------------------- /src/test/fuzz/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/fuzz/util.h -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/i2p_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/i2p_tests.cpp -------------------------------------------------------------------------------- /src/test/ipc_test.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/ipc_test.capnp -------------------------------------------------------------------------------- /src/test/ipc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/ipc_test.cpp -------------------------------------------------------------------------------- /src/test/ipc_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/ipc_test.h -------------------------------------------------------------------------------- /src/test/ipc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/ipc_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/main.cpp -------------------------------------------------------------------------------- /src/test/net_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/net_tests.cpp -------------------------------------------------------------------------------- /src/test/pcp_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/pcp_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/pool_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/pool_tests.cpp -------------------------------------------------------------------------------- /src/test/pow_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/pow_tests.cpp -------------------------------------------------------------------------------- /src/test/rbf_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/rbf_tests.cpp -------------------------------------------------------------------------------- /src/test/rest_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/rest_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/scriptnum10.h -------------------------------------------------------------------------------- /src/test/sock_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/sock_tests.cpp -------------------------------------------------------------------------------- /src/test/span_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/span_tests.cpp -------------------------------------------------------------------------------- /src/test/sync_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/sync_tests.cpp -------------------------------------------------------------------------------- /src/test/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/README.md -------------------------------------------------------------------------------- /src/test/util/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/coins.cpp -------------------------------------------------------------------------------- /src/test/util/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/coins.h -------------------------------------------------------------------------------- /src/test/util/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/json.cpp -------------------------------------------------------------------------------- /src/test/util/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/json.h -------------------------------------------------------------------------------- /src/test/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/logging.h -------------------------------------------------------------------------------- /src/test/util/mining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/mining.h -------------------------------------------------------------------------------- /src/test/util/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/net.cpp -------------------------------------------------------------------------------- /src/test/util/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/net.h -------------------------------------------------------------------------------- /src/test/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/random.h -------------------------------------------------------------------------------- /src/test/util/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/script.h -------------------------------------------------------------------------------- /src/test/util/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/str.cpp -------------------------------------------------------------------------------- /src/test/util/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/str.h -------------------------------------------------------------------------------- /src/test/util/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/time.cpp -------------------------------------------------------------------------------- /src/test/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util/time.h -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/torcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/torcontrol.cpp -------------------------------------------------------------------------------- /src/torcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/torcontrol.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/txgraph.cpp -------------------------------------------------------------------------------- /src/txgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/txgraph.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/txrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/txrequest.cpp -------------------------------------------------------------------------------- /src/txrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/txrequest.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/test/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /src/univalue/test/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /src/univalue/test/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /src/univalue/test/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /src/univalue/test/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /src/univalue/test/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /src/univalue/test/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /src/univalue/test/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /src/univalue/test/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /src/univalue/test/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /src/univalue/test/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /src/univalue/test/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /src/univalue/test/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /src/univalue/test/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /src/univalue/test/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /src/univalue/test/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /src/univalue/test/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /src/univalue/test/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /src/univalue/test/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /src/univalue/test/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /src/univalue/test/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /src/univalue/test/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /src/univalue/test/fail34.json: -------------------------------------------------------------------------------- 1 | {} garbage -------------------------------------------------------------------------------- /src/univalue/test/fail36.json: -------------------------------------------------------------------------------- 1 | {"a":} 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail37.json: -------------------------------------------------------------------------------- 1 | {"a":1 "b":2} 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail38.json: -------------------------------------------------------------------------------- 1 | ["\ud834"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail39.json: -------------------------------------------------------------------------------- 1 | ["\udd61"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /src/univalue/test/fail44.json: -------------------------------------------------------------------------------- 1 | "This file ends without a newline or close-quote. -------------------------------------------------------------------------------- /src/univalue/test/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /src/univalue/test/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /src/univalue/test/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /src/univalue/test/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /src/univalue/test/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /src/univalue/test/round2.json: -------------------------------------------------------------------------------- 1 | ["a§■𐎒𝅘𝅥𝅯"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/round3.json: -------------------------------------------------------------------------------- 1 | "abcdefghijklmnopqrstuvwxyz" 2 | -------------------------------------------------------------------------------- /src/univalue/test/round4.json: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /src/univalue/test/round5.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /src/univalue/test/round6.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /src/univalue/test/round7.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /src/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/any.h -------------------------------------------------------------------------------- /src/util/asmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/asmap.cpp -------------------------------------------------------------------------------- /src/util/asmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/asmap.h -------------------------------------------------------------------------------- /src/util/bip32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/bip32.cpp -------------------------------------------------------------------------------- /src/util/bip32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/bip32.h -------------------------------------------------------------------------------- /src/util/bitdeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/bitdeque.h -------------------------------------------------------------------------------- /src/util/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/bitset.h -------------------------------------------------------------------------------- /src/util/byte_units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/byte_units.h -------------------------------------------------------------------------------- /src/util/chaintype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/chaintype.cpp -------------------------------------------------------------------------------- /src/util/chaintype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/chaintype.h -------------------------------------------------------------------------------- /src/util/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/check.cpp -------------------------------------------------------------------------------- /src/util/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/check.h -------------------------------------------------------------------------------- /src/util/epochguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/epochguard.h -------------------------------------------------------------------------------- /src/util/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/exception.cpp -------------------------------------------------------------------------------- /src/util/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/exception.h -------------------------------------------------------------------------------- /src/util/exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/exec.cpp -------------------------------------------------------------------------------- /src/util/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/exec.h -------------------------------------------------------------------------------- /src/util/fastrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/fastrange.h -------------------------------------------------------------------------------- /src/util/feefrac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/feefrac.cpp -------------------------------------------------------------------------------- /src/util/feefrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/feefrac.h -------------------------------------------------------------------------------- /src/util/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/fs.cpp -------------------------------------------------------------------------------- /src/util/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/fs.h -------------------------------------------------------------------------------- /src/util/fs_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/fs_helpers.cpp -------------------------------------------------------------------------------- /src/util/fs_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/fs_helpers.h -------------------------------------------------------------------------------- /src/util/golombrice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/golombrice.h -------------------------------------------------------------------------------- /src/util/hash_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/hash_type.h -------------------------------------------------------------------------------- /src/util/hasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/hasher.cpp -------------------------------------------------------------------------------- /src/util/hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/hasher.h -------------------------------------------------------------------------------- /src/util/insert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/insert.h -------------------------------------------------------------------------------- /src/util/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/macros.h -------------------------------------------------------------------------------- /src/util/moneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/moneystr.cpp -------------------------------------------------------------------------------- /src/util/moneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/moneystr.h -------------------------------------------------------------------------------- /src/util/obfuscation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/obfuscation.h -------------------------------------------------------------------------------- /src/util/overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/overflow.h -------------------------------------------------------------------------------- /src/util/overloaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/overloaded.h -------------------------------------------------------------------------------- /src/util/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/rbf.cpp -------------------------------------------------------------------------------- /src/util/rbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/rbf.h -------------------------------------------------------------------------------- /src/util/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/result.h -------------------------------------------------------------------------------- /src/util/serfloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/serfloat.cpp -------------------------------------------------------------------------------- /src/util/serfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/serfloat.h -------------------------------------------------------------------------------- /src/util/sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/sock.cpp -------------------------------------------------------------------------------- /src/util/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/sock.h -------------------------------------------------------------------------------- /src/util/strencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/strencodings.h -------------------------------------------------------------------------------- /src/util/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/string.cpp -------------------------------------------------------------------------------- /src/util/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/string.h -------------------------------------------------------------------------------- /src/util/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/subprocess.h -------------------------------------------------------------------------------- /src/util/syserror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/syserror.cpp -------------------------------------------------------------------------------- /src/util/syserror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/syserror.h -------------------------------------------------------------------------------- /src/util/task_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/task_runner.h -------------------------------------------------------------------------------- /src/util/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/thread.cpp -------------------------------------------------------------------------------- /src/util/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/thread.h -------------------------------------------------------------------------------- /src/util/threadnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/threadnames.h -------------------------------------------------------------------------------- /src/util/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/time.cpp -------------------------------------------------------------------------------- /src/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/time.h -------------------------------------------------------------------------------- /src/util/tokenpipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/tokenpipe.cpp -------------------------------------------------------------------------------- /src/util/tokenpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/tokenpipe.h -------------------------------------------------------------------------------- /src/util/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/trace.h -------------------------------------------------------------------------------- /src/util/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/translation.h -------------------------------------------------------------------------------- /src/util/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/types.h -------------------------------------------------------------------------------- /src/util/vecdeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/vecdeque.h -------------------------------------------------------------------------------- /src/util/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/util/vector.h -------------------------------------------------------------------------------- /src/validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/validation.cpp -------------------------------------------------------------------------------- /src/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/validation.h -------------------------------------------------------------------------------- /src/versionbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/versionbits.cpp -------------------------------------------------------------------------------- /src/versionbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/versionbits.h -------------------------------------------------------------------------------- /src/versionbits_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/versionbits_impl.h -------------------------------------------------------------------------------- /src/wallet/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/context.cpp -------------------------------------------------------------------------------- /src/wallet/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/context.h -------------------------------------------------------------------------------- /src/wallet/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/crypter.cpp -------------------------------------------------------------------------------- /src/wallet/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/crypter.h -------------------------------------------------------------------------------- /src/wallet/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/db.cpp -------------------------------------------------------------------------------- /src/wallet/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/db.h -------------------------------------------------------------------------------- /src/wallet/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/dump.cpp -------------------------------------------------------------------------------- /src/wallet/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/dump.h -------------------------------------------------------------------------------- /src/wallet/feebumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/feebumper.h -------------------------------------------------------------------------------- /src/wallet/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/fees.cpp -------------------------------------------------------------------------------- /src/wallet/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/fees.h -------------------------------------------------------------------------------- /src/wallet/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/init.cpp -------------------------------------------------------------------------------- /src/wallet/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/load.cpp -------------------------------------------------------------------------------- /src/wallet/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/load.h -------------------------------------------------------------------------------- /src/wallet/migrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/migrate.cpp -------------------------------------------------------------------------------- /src/wallet/migrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/migrate.h -------------------------------------------------------------------------------- /src/wallet/receive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/receive.cpp -------------------------------------------------------------------------------- /src/wallet/receive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/receive.h -------------------------------------------------------------------------------- /src/wallet/rpc/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/rpc/util.cpp -------------------------------------------------------------------------------- /src/wallet/rpc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/rpc/util.h -------------------------------------------------------------------------------- /src/wallet/rpc/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/rpc/wallet.h -------------------------------------------------------------------------------- /src/wallet/spend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/spend.cpp -------------------------------------------------------------------------------- /src/wallet/spend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/spend.h -------------------------------------------------------------------------------- /src/wallet/sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/sqlite.cpp -------------------------------------------------------------------------------- /src/wallet/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/sqlite.h -------------------------------------------------------------------------------- /src/wallet/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/test/util.h -------------------------------------------------------------------------------- /src/wallet/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/types.h -------------------------------------------------------------------------------- /src/wallet/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/wallet.cpp -------------------------------------------------------------------------------- /src/wallet/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/wallet.h -------------------------------------------------------------------------------- /src/wallet/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/walletdb.cpp -------------------------------------------------------------------------------- /src/wallet/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/walletdb.h -------------------------------------------------------------------------------- /src/wallet/wallettool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/wallettool.h -------------------------------------------------------------------------------- /src/wallet/walletutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/wallet/walletutil.h -------------------------------------------------------------------------------- /src/zmq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/zmq/CMakeLists.txt -------------------------------------------------------------------------------- /src/zmq/zmqrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/zmq/zmqrpc.cpp -------------------------------------------------------------------------------- /src/zmq/zmqrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/zmq/zmqrpc.h -------------------------------------------------------------------------------- /src/zmq/zmqutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/zmq/zmqutil.cpp -------------------------------------------------------------------------------- /src/zmq/zmqutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/src/zmq/zmqutil.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/test/README.md -------------------------------------------------------------------------------- /test/config.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/test/config.ini.in -------------------------------------------------------------------------------- /test/functional/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/functional/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/test_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/test/lint/README.md -------------------------------------------------------------------------------- /test/lint/check-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/test/lint/check-doc.py -------------------------------------------------------------------------------- /test/lint/lint-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/test/lint/lint-files.py -------------------------------------------------------------------------------- /test/lint/lint-shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/test/lint/lint-shell.py -------------------------------------------------------------------------------- /test/lint/lint-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/test/lint/lint-tests.py -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23Konradbase/bitcoin/HEAD/vcpkg.json --------------------------------------------------------------------------------