├── .appveyor.yml ├── .cirrus.yml ├── .fuzzbuzz.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── good_first_issue.md │ └── gui_issue.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .python-version ├── .style.yapf ├── .travis.yml ├── .tx └── config ├── CODEOWNERS ├── CONTRIBUTING.md ├── COPYING ├── INSTALL.md ├── Makefile.am ├── README.md ├── SECURITY.md ├── autogen.sh ├── ci ├── README.md ├── lint │ ├── 04_install.sh │ ├── 05_before_script.sh │ └── 06_script.sh ├── retry │ ├── README.md │ └── retry ├── test │ ├── 00_setup_env.sh │ ├── 00_setup_env_arm.sh │ ├── 00_setup_env_i686_centos.sh │ ├── 00_setup_env_mac.sh │ ├── 00_setup_env_mac_host.sh │ ├── 00_setup_env_native_asan.sh │ ├── 00_setup_env_native_fuzz.sh │ ├── 00_setup_env_native_fuzz_with_valgrind.sh │ ├── 00_setup_env_native_msan.sh │ ├── 00_setup_env_native_multiprocess.sh │ ├── 00_setup_env_native_nowallet.sh │ ├── 00_setup_env_native_qt5.sh │ ├── 00_setup_env_native_tsan.sh │ ├── 00_setup_env_native_valgrind.sh │ ├── 00_setup_env_s390x.sh │ ├── 00_setup_env_win64.sh │ ├── 03_before_install.sh │ ├── 04_install.sh │ ├── 05_before_script.sh │ ├── 06_script_a.sh │ ├── 06_script_b.sh │ ├── wrap-qemu.sh │ ├── wrap-valgrind.sh │ └── wrap-wine.sh └── test_run_all.sh ├── configure.ac ├── contrib ├── README.md ├── bitcoin-cli.bash-completion ├── bitcoin-qt.pro ├── bitcoin-tx.bash-completion ├── bitcoind.bash-completion ├── debian │ └── copyright ├── devtools │ ├── README.md │ ├── circular-dependencies.py │ ├── clang-format-diff.py │ ├── copyright_header.py │ ├── gen-manpages.sh │ ├── security-check.py │ ├── split-debug.sh.in │ ├── symbol-check.py │ ├── test-security-check.py │ ├── test_deterministic_coverage.sh │ └── utxo_snapshot.sh ├── filter-lcov.py ├── gitian-build.py ├── gitian-descriptors │ ├── assign_DISTNAME │ ├── gitian-linux.yml │ ├── gitian-osx-signer.yml │ ├── gitian-osx.yml │ ├── gitian-win-signer.yml │ └── gitian-win.yml ├── gitian-keys │ ├── README.md │ ├── coblee-key.pgp │ ├── davidburkett38-key.pgp │ ├── keys.txt │ ├── losh11-key.pgp │ ├── oharareidryan-key.pgp │ ├── rromanchuk-key.pgp │ ├── theholyroger-key.pgp │ ├── thrasher-key.pgp │ ├── ultragtx-key.pgp │ ├── void-main.pgp │ ├── xinxi-wang-key.pgp │ └── zhiyan-key.pgp ├── guix │ ├── README.md │ ├── guix-build.sh │ ├── libexec │ │ └── build.sh │ └── manifest.scm ├── init │ ├── README.md │ ├── bitcoind.conf │ ├── bitcoind.init │ ├── bitcoind.openrc │ ├── bitcoind.openrcconf │ ├── bitcoind.service │ └── org.bitcoin.bitcoind.plist ├── install_db4.sh ├── linearize │ ├── README.md │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── LICENSE │ ├── README.md │ ├── background.svg │ ├── custom_dsstore.py │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── extract-osx-sdk.sh │ ├── fancy.plist │ ├── gen-sdk │ └── macdeployqtplus ├── qos │ ├── README.md │ └── tc.sh ├── seeds │ ├── .gitignore │ ├── README.md │ ├── generate-seeds.py │ ├── makeseeds.py │ ├── nodes_main.txt │ ├── nodes_test.txt │ └── suspicious_hosts.txt ├── testgen │ ├── README.md │ ├── base58.py │ └── gen_key_io_test_vectors.py ├── valgrind.supp ├── 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 ├── verifybinaries │ ├── README.md │ └── verify.sh ├── windeploy │ ├── detached-sig-create.sh │ └── win-codesign.cert └── zmq │ └── zmq_sub.py ├── depends ├── .gitignore ├── Makefile ├── README.md ├── builders │ ├── darwin.mk │ ├── default.mk │ └── linux.mk ├── cmake │ └── mingw-w64-x86_64.cmake ├── config.guess ├── config.site.in ├── config.sub ├── description.md ├── funcs.mk ├── hosts │ ├── android.mk │ ├── darwin.mk │ ├── default.mk │ ├── linux.mk │ └── mingw32.mk ├── packages.md ├── packages │ ├── bdb.mk │ ├── boost.mk │ ├── capnp.mk │ ├── expat.mk │ ├── fontconfig.mk │ ├── freetype.mk │ ├── libXau.mk │ ├── libevent.mk │ ├── libfmt.mk │ ├── libmultiprocess.mk │ ├── libxcb.mk │ ├── miniupnpc.mk │ ├── native_biplist.mk │ ├── native_capnp.mk │ ├── native_cctools.mk │ ├── native_clang.mk │ ├── native_ds_store.mk │ ├── native_libdmg-hfsplus.mk │ ├── native_libmultiprocess.mk │ ├── native_libtapi.mk │ ├── native_mac_alias.mk │ ├── openssl.mk │ ├── packages.mk │ ├── qrencode.mk │ ├── qt.mk │ ├── sqlite.mk │ ├── xcb_proto.mk │ ├── xproto.mk │ ├── zeromq.mk │ └── zlib.mk └── patches │ ├── bdb │ └── clang_cxx_11.patch │ ├── boost │ └── unused_var_in_process.patch │ ├── fontconfig │ ├── gperf_header_regen.patch │ └── remove_char_width_usage.patch │ ├── libevent │ └── 0001-fix-windows-getaddrinfo.patch │ ├── miniupnpc │ └── dont_leak_info.patch │ ├── native_libdmg-hfsplus │ └── remove-libcrypto-dependency.patch │ ├── openssl │ └── 0001-Add-OpenSSL-termios-fix-for-musl-libc.patch │ ├── qt │ ├── dont_hardcode_pwd.patch │ ├── drop_lrelease_dependency.patch │ ├── fix_android_jni_static.patch │ ├── fix_android_qmake_conf.patch │ ├── fix_configure_mac.patch │ ├── fix_no_printer.patch │ ├── fix_powerpc_libpng.patch │ ├── fix_qt_pkgconfig.patch │ ├── fix_rcc_determinism.patch │ ├── fix_riscv64_arch.patch │ ├── freetype_back_compat.patch │ ├── mac-qmake.conf │ ├── no-xlib.patch │ └── xkb-default.patch │ └── zeromq │ └── remove_libstd_link.patch ├── doc ├── .gitignore ├── Doxyfile.in ├── JSON-RPC-interface.md ├── README.md ├── README_doxygen.md ├── README_windows.txt ├── REST-interface.md ├── assets-attribution.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.md ├── dependencies.md ├── descriptors.md ├── developer-notes.md ├── dnsseed-policy.md ├── files.md ├── fuzzing.md ├── gitian-building.md ├── init.md ├── litecoin-release-notes │ ├── release-notes-0.10.2.2.md │ ├── release-notes-0.10.4.md │ ├── release-notes-0.13.2.md │ ├── release-notes-0.13.3.md │ ├── release-notes-0.14.2.md │ ├── release-notes-0.15.0.1.md │ ├── release-notes-0.15.1.md │ ├── release-notes-0.16.0.md │ ├── release-notes-0.16.2.md │ ├── release-notes-0.16.3.md │ ├── release-notes-0.17.1.md │ ├── release-notes-0.18.1.md │ ├── release-notes-0.21.1.md │ ├── release-notes-0.21.2.1.md │ ├── release-notes-0.21.2.2.md │ ├── release-notes-0.21.2.md │ ├── release-notes-0.21.3.md │ └── release-notes-0.21.4.md ├── man │ ├── Makefile.am │ ├── litecoin-cli.1 │ ├── litecoin-qt.1 │ ├── litecoin-tx.1 │ ├── litecoin-wallet.1 │ └── litecoind.1 ├── multiprocess.md ├── mweb │ ├── light-clients.md │ ├── mining-changes.md │ ├── pmmr.md │ ├── stealth-addresses.md │ └── store.md ├── productivity.md ├── psbt.md ├── reduce-memory.md ├── reduce-traffic.md ├── release-notes-litecoin.md ├── release-notes.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.21.0.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-process.md ├── shared-libraries.md ├── tor.md ├── translation_process.md ├── translation_strings_policy.md └── zmq.md ├── libbitcoinconsensus.pc.in ├── share ├── examples │ └── litecoin.conf ├── genbuild.sh ├── 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 │ └── extract_strings_qt.py ├── rpcauth │ ├── README.md │ └── rpcauth.py └── setup.nsi.in ├── src ├── .clang-format ├── Makefile.am ├── Makefile.bench.include ├── Makefile.crc32c.include ├── Makefile.leveldb.include ├── Makefile.qt.include ├── Makefile.qt_locale.include ├── Makefile.qttest.include ├── Makefile.test.include ├── Makefile.test_fuzz.include ├── Makefile.test_util.include ├── addrdb.cpp ├── addrdb.h ├── addrman.cpp ├── addrman.h ├── amount.h ├── arith_uint256.cpp ├── arith_uint256.h ├── attributes.h ├── banman.cpp ├── banman.h ├── base58.cpp ├── base58.h ├── bech32.cpp ├── bech32.h ├── bench │ ├── .gitignore │ ├── addrman.cpp │ ├── base58.cpp │ ├── bech32.cpp │ ├── bench.cpp │ ├── bench.h │ ├── bench_bitcoin.cpp │ ├── block_assemble.cpp │ ├── ccoins_caching.cpp │ ├── chacha20.cpp │ ├── chacha_poly_aead.cpp │ ├── checkblock.cpp │ ├── checkqueue.cpp │ ├── coin_selection.cpp │ ├── crypto_hash.cpp │ ├── data.cpp │ ├── data.h │ ├── data │ │ └── block413567.raw │ ├── duplicate_inputs.cpp │ ├── examples.cpp │ ├── gcs_filter.cpp │ ├── hashpadding.cpp │ ├── lockedpool.cpp │ ├── mempool_eviction.cpp │ ├── mempool_stress.cpp │ ├── merkle_root.cpp │ ├── nanobench.cpp │ ├── nanobench.h │ ├── poly1305.cpp │ ├── prevector.cpp │ ├── rollingbloom.cpp │ ├── rpc_blockchain.cpp │ ├── rpc_mempool.cpp │ ├── util_time.cpp │ ├── verify_script.cpp │ └── wallet_balance.cpp ├── bitcoin-cli-res.rc ├── bitcoin-cli.cpp ├── bitcoin-tx-res.rc ├── bitcoin-tx.cpp ├── bitcoin-wallet-res.rc ├── bitcoin-wallet.cpp ├── bitcoind-res.rc ├── bitcoind.cpp ├── blockencodings.cpp ├── blockencodings.h ├── blockfilter.cpp ├── blockfilter.h ├── bloom.cpp ├── bloom.h ├── chain.cpp ├── chain.h ├── chainparams.cpp ├── chainparams.h ├── chainparamsbase.cpp ├── chainparamsbase.h ├── chainparamsseeds.h ├── checkqueue.h ├── clientversion.cpp ├── clientversion.h ├── coins.cpp ├── coins.h ├── compat.h ├── compat │ ├── assumptions.h │ ├── byteswap.h │ ├── cpuid.h │ ├── endian.h │ ├── glibc_compat.cpp │ ├── glibc_sanity.cpp │ ├── glibcxx_sanity.cpp │ ├── sanity.h │ ├── stdin.cpp │ ├── stdin.h │ └── strnlen.cpp ├── compressor.cpp ├── compressor.h ├── config │ └── .empty ├── consensus │ ├── 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 │ ├── .appveyor.yml │ ├── .clang-format │ ├── .clang_complete │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── .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 │ ├── aes.cpp │ ├── aes.h │ ├── blake3 │ │ ├── .gitignore │ │ ├── Makefile.testing │ │ ├── README.md │ │ ├── blake3.c │ │ ├── blake3.h │ │ ├── blake3_avx2.c │ │ ├── blake3_avx2_x86-64_unix.S │ │ ├── blake3_avx2_x86-64_windows_gnu.S │ │ ├── blake3_avx2_x86-64_windows_msvc.asm │ │ ├── blake3_avx512.c │ │ ├── blake3_avx512_x86-64_unix.S │ │ ├── blake3_avx512_x86-64_windows_gnu.S │ │ ├── blake3_avx512_x86-64_windows_msvc.asm │ │ ├── blake3_dispatch.c │ │ ├── blake3_impl.h │ │ ├── blake3_neon.c │ │ ├── blake3_portable.c │ │ ├── blake3_sse2.c │ │ ├── blake3_sse2_x86-64_unix.S │ │ ├── blake3_sse2_x86-64_windows_gnu.S │ │ ├── blake3_sse2_x86-64_windows_msvc.asm │ │ ├── blake3_sse41.c │ │ ├── blake3_sse41_x86-64_unix.S │ │ ├── blake3_sse41_x86-64_windows_gnu.S │ │ ├── blake3_sse41_x86-64_windows_msvc.asm │ │ ├── example.c │ │ ├── main.c │ │ └── test.py │ ├── chacha20.cpp │ ├── chacha20.h │ ├── chacha_poly_aead.cpp │ ├── chacha_poly_aead.h │ ├── common.h │ ├── ctaes │ │ ├── COPYING │ │ ├── README.md │ │ ├── bench.c │ │ ├── ctaes.c │ │ ├── ctaes.h │ │ └── test.c │ ├── hkdf_sha256_32.cpp │ ├── hkdf_sha256_32.h │ ├── hmac_sha256.cpp │ ├── hmac_sha256.h │ ├── hmac_sha512.cpp │ ├── hmac_sha512.h │ ├── poly1305.cpp │ ├── poly1305.h │ ├── ripemd160.cpp │ ├── ripemd160.h │ ├── scrypt-sse2.cpp │ ├── scrypt.cpp │ ├── scrypt.h │ ├── sha1.cpp │ ├── sha1.h │ ├── sha256.cpp │ ├── sha256.h │ ├── sha256_avx2.cpp │ ├── sha256_shani.cpp │ ├── sha256_sse4.cpp │ ├── sha256_sse41.cpp │ ├── sha3.cpp │ ├── sha3.h │ ├── sha512.cpp │ ├── sha512.h │ ├── siphash.cpp │ └── siphash.h ├── cuckoocache.h ├── dbwrapper.cpp ├── dbwrapper.h ├── dummywallet.cpp ├── flatfile.cpp ├── flatfile.h ├── fs.cpp ├── fs.h ├── hash.cpp ├── hash.h ├── httprpc.cpp ├── httprpc.h ├── httpserver.cpp ├── httpserver.h ├── index │ ├── base.cpp │ ├── base.h │ ├── blockfilterindex.cpp │ ├── blockfilterindex.h │ ├── disktxpos.h │ ├── txindex.cpp │ └── txindex.h ├── indirectmap.h ├── init.cpp ├── init.h ├── interfaces │ ├── README.md │ ├── chain.cpp │ ├── chain.h │ ├── handler.cpp │ ├── handler.h │ ├── node.cpp │ ├── node.h │ ├── wallet.cpp │ └── wallet.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 ├── libmw │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── deps │ │ ├── caches │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── include │ │ │ │ └── caches │ │ │ │ ├── Cache.h │ │ │ │ └── internal │ │ │ │ ├── cache.hpp │ │ │ │ ├── cache_policy.hpp │ │ │ │ ├── fifo_cache_policy.hpp │ │ │ │ ├── lfu_cache_policy.hpp │ │ │ │ └── lru_cache_policy.hpp │ │ ├── ghc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── include │ │ │ │ └── ghc │ │ │ │ ├── filesystem.hpp │ │ │ │ ├── fs_fwd.hpp │ │ │ │ ├── fs_impl.hpp │ │ │ │ ├── fs_std.hpp │ │ │ │ ├── fs_std_fwd.hpp │ │ │ │ └── fs_std_impl.hpp │ │ └── mio │ │ │ └── include │ │ │ └── mio │ │ │ └── mmap.hpp │ ├── include │ │ └── mw │ │ │ ├── common │ │ │ ├── BitSet.h │ │ │ ├── Lock.h │ │ │ ├── Logger.h │ │ │ ├── Macros.h │ │ │ └── Traits.h │ │ │ ├── consensus │ │ │ ├── Aggregation.h │ │ │ ├── KernelSumValidator.h │ │ │ ├── Params.h │ │ │ ├── StealthSumValidator.h │ │ │ └── Weight.h │ │ │ ├── crypto │ │ │ ├── Blinds.h │ │ │ ├── Bulletproofs.h │ │ │ ├── Hasher.h │ │ │ ├── Keys.h │ │ │ ├── MuSig.h │ │ │ ├── Pedersen.h │ │ │ ├── PublicKeys.h │ │ │ ├── Schnorr.h │ │ │ └── SecretKeys.h │ │ │ ├── db │ │ │ ├── CoinDB.h │ │ │ ├── LeafDB.h │ │ │ └── MMRInfoDB.h │ │ │ ├── exceptions │ │ │ ├── CryptoException.h │ │ │ ├── DatabaseException.h │ │ │ ├── DeserializationException.h │ │ │ ├── FileException.h │ │ │ ├── InsufficientFundsException.h │ │ │ ├── LTCException.h │ │ │ ├── NotFoundException.h │ │ │ └── ValidationException.h │ │ │ ├── file │ │ │ ├── AppendOnlyFile.h │ │ │ ├── File.h │ │ │ ├── FilePath.h │ │ │ └── MemMap.h │ │ │ ├── interfaces │ │ │ └── db_interface.h │ │ │ ├── mmr │ │ │ ├── Index.h │ │ │ ├── Leaf.h │ │ │ ├── LeafIndex.h │ │ │ ├── LeafSet.h │ │ │ ├── MMR.h │ │ │ ├── MMRInfo.h │ │ │ ├── MMRUtil.h │ │ │ ├── PruneList.h │ │ │ └── Segment.h │ │ │ ├── models │ │ │ ├── block │ │ │ │ ├── Block.h │ │ │ │ ├── BlockUndo.h │ │ │ │ └── Header.h │ │ │ ├── crypto │ │ │ │ ├── BigInteger.h │ │ │ │ ├── BlindingFactor.h │ │ │ │ ├── Commitment.h │ │ │ │ ├── Hash.h │ │ │ │ ├── ProofData.h │ │ │ │ ├── ProofMessage.h │ │ │ │ ├── PublicKey.h │ │ │ │ ├── RangeProof.h │ │ │ │ ├── RewoundProof.h │ │ │ │ ├── SecretKey.h │ │ │ │ ├── Signature.h │ │ │ │ └── SignedMessage.h │ │ │ ├── tx │ │ │ │ ├── Input.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── Output.h │ │ │ │ ├── OutputMask.h │ │ │ │ ├── PegInCoin.h │ │ │ │ ├── PegOutCoin.h │ │ │ │ ├── Transaction.h │ │ │ │ ├── TxBody.h │ │ │ │ └── UTXO.h │ │ │ └── wallet │ │ │ │ ├── Coin.h │ │ │ │ ├── KeyChainPath.h │ │ │ │ ├── Recipient.h │ │ │ │ └── StealthAddress.h │ │ │ ├── node │ │ │ ├── BlockBuilder.h │ │ │ ├── BlockValidator.h │ │ │ └── CoinsView.h │ │ │ ├── util │ │ │ ├── BitUtil.h │ │ │ ├── StringUtil.h │ │ │ └── VectorUtil.h │ │ │ └── wallet │ │ │ ├── Keychain.h │ │ │ └── TxBuilder.h │ ├── src │ │ ├── common │ │ │ └── Logger.cpp │ │ ├── crypto │ │ │ ├── Bulletproofs.cpp │ │ │ ├── Context.h │ │ │ ├── ConversionUtil.cpp │ │ │ ├── ConversionUtil.h │ │ │ ├── Hasher.cpp │ │ │ ├── MuSig.cpp │ │ │ ├── Pedersen.cpp │ │ │ ├── PublicKeys.cpp │ │ │ ├── Schnorr.cpp │ │ │ ├── SecretKeys.cpp │ │ │ └── secp256k1-zkp.h │ │ ├── db │ │ │ ├── CoinDB.cpp │ │ │ ├── LeafDB.cpp │ │ │ ├── MMRInfoDB.cpp │ │ │ └── common │ │ │ │ ├── DBEntry.h │ │ │ │ ├── DBTable.h │ │ │ │ ├── DBTransaction.h │ │ │ │ ├── Database.h │ │ │ │ ├── OrderedMultimap.h │ │ │ │ └── SerializableVec.h │ │ ├── file │ │ │ └── File.cpp │ │ ├── mmr │ │ │ ├── ILeafSet.cpp │ │ │ ├── IMMR.cpp │ │ │ ├── Index.cpp │ │ │ ├── LeafSet.cpp │ │ │ ├── LeafSetCache.cpp │ │ │ ├── MMRUtil.cpp │ │ │ ├── MemMMR.cpp │ │ │ ├── PMMR.cpp │ │ │ ├── PMMRCache.cpp │ │ │ ├── PruneList.cpp │ │ │ └── Segment.cpp │ │ ├── models │ │ │ ├── block │ │ │ │ └── Block.cpp │ │ │ ├── crypto │ │ │ │ ├── Commitment.cpp │ │ │ │ └── PublicKey.cpp │ │ │ └── tx │ │ │ │ ├── Input.cpp │ │ │ │ ├── Kernel.cpp │ │ │ │ ├── Output.cpp │ │ │ │ ├── Transaction.cpp │ │ │ │ └── TxBody.cpp │ │ ├── node │ │ │ ├── BlockBuilder.cpp │ │ │ ├── BlockValidator.cpp │ │ │ ├── CoinActions.h │ │ │ ├── CoinsViewCache.cpp │ │ │ └── CoinsViewDB.cpp │ │ └── wallet │ │ │ ├── Keychain.cpp │ │ │ └── TxBuilder.cpp │ └── test │ │ ├── framework │ │ ├── include │ │ │ └── test_framework │ │ │ │ ├── Deserializer.h │ │ │ │ ├── Miner.h │ │ │ │ ├── TestLeafSet.h │ │ │ │ ├── TestMWEB.h │ │ │ │ ├── TxBuilder.h │ │ │ │ └── models │ │ │ │ ├── MinedBlock.h │ │ │ │ ├── Tx.h │ │ │ │ ├── TxInput.h │ │ │ │ └── TxOutput.h │ │ └── src │ │ │ ├── TxBuilder.cpp │ │ │ └── models │ │ │ └── Tx.cpp │ │ └── tests │ │ ├── consensus │ │ ├── Test_Aggregation.cpp │ │ ├── Test_KernelSumValidator.cpp │ │ ├── Test_StealthSumValidator.cpp │ │ └── Test_Weight.cpp │ │ ├── crypto │ │ ├── Test_AddCommitments.cpp │ │ ├── Test_AggSig.cpp │ │ ├── Test_Keys.cpp │ │ └── Test_RangeProofs.cpp │ │ ├── db │ │ └── Test_LeafDB.cpp │ │ ├── mmr │ │ ├── Test_Index.cpp │ │ ├── Test_LeafIndex.cpp │ │ ├── Test_LeafSet.cpp │ │ ├── Test_LeafSetCache.cpp │ │ ├── Test_MMR.cpp │ │ ├── Test_MMRUtil.cpp │ │ ├── Test_PruneList.cpp │ │ └── Test_Segment.cpp │ │ ├── models │ │ ├── block │ │ │ ├── Test_Block.cpp │ │ │ └── Test_Header.cpp │ │ ├── crypto │ │ │ └── Test_BigInteger.cpp │ │ └── tx │ │ │ ├── Test_Input.cpp │ │ │ ├── Test_Kernel.cpp │ │ │ ├── Test_Output.cpp │ │ │ ├── Test_PegInCoin.cpp │ │ │ ├── Test_PegOutCoin.cpp │ │ │ ├── Test_Transaction.cpp │ │ │ ├── Test_TxBody.cpp │ │ │ └── Test_UTXO.cpp │ │ ├── node │ │ ├── Test_BlockBuilder.cpp │ │ ├── Test_BlockValidator.cpp │ │ ├── Test_CoinsView.cpp │ │ ├── Test_MineChain.cpp │ │ └── Test_Reorg.cpp │ │ └── wallet │ │ └── Test_Keychain.cpp ├── logging.cpp ├── logging.h ├── logging │ └── timer.h ├── memusage.h ├── merkleblock.cpp ├── merkleblock.h ├── miner.cpp ├── miner.h ├── mweb │ ├── mweb_db.h │ ├── mweb_miner.cpp │ ├── mweb_miner.h │ ├── mweb_models.h │ ├── mweb_node.cpp │ ├── mweb_node.h │ ├── mweb_policy.cpp │ ├── mweb_policy.h │ ├── mweb_transact.cpp │ ├── mweb_transact.h │ ├── mweb_wallet.cpp │ └── mweb_wallet.h ├── net.cpp ├── net.h ├── net_permissions.cpp ├── net_permissions.h ├── net_processing.cpp ├── net_processing.h ├── net_types.h ├── netaddress.cpp ├── netaddress.h ├── netbase.cpp ├── netbase.h ├── netmessagemaker.h ├── node │ ├── README.md │ ├── coin.cpp │ ├── coin.h │ ├── coinstats.cpp │ ├── coinstats.h │ ├── context.cpp │ ├── context.h │ ├── psbt.cpp │ ├── psbt.h │ ├── transaction.cpp │ ├── transaction.h │ ├── ui_interface.cpp │ ├── ui_interface.h │ └── utxo_snapshot.h ├── noui.cpp ├── noui.h ├── optional.h ├── outputtype.cpp ├── outputtype.h ├── policy │ ├── feerate.cpp │ ├── feerate.h │ ├── fees.cpp │ ├── fees.h │ ├── policy.cpp │ ├── policy.h │ ├── rbf.cpp │ ├── rbf.h │ ├── settings.cpp │ └── settings.h ├── pow.cpp ├── pow.h ├── prevector.h ├── primitives │ ├── block.cpp │ ├── block.h │ ├── transaction.cpp │ └── transaction.h ├── protocol.cpp ├── protocol.h ├── psbt.cpp ├── psbt.h ├── pubkey.cpp ├── pubkey.h ├── qt │ ├── Makefile │ ├── 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 │ ├── guiconstants.h │ ├── guiutil.cpp │ ├── guiutil.h │ ├── intro.cpp │ ├── intro.h │ ├── locale │ │ ├── bitcoin_af.ts │ │ ├── bitcoin_am.ts │ │ ├── bitcoin_ar.ts │ │ ├── bitcoin_be.ts │ │ ├── bitcoin_bg.ts │ │ ├── bitcoin_bn.ts │ │ ├── bitcoin_bs.ts │ │ ├── bitcoin_ca.ts │ │ ├── bitcoin_cs.ts │ │ ├── bitcoin_cy.ts │ │ ├── bitcoin_da.ts │ │ ├── bitcoin_de.ts │ │ ├── bitcoin_el.ts │ │ ├── bitcoin_en.ts │ │ ├── bitcoin_en_GB.ts │ │ ├── bitcoin_eo.ts │ │ ├── bitcoin_es.ts │ │ ├── bitcoin_es_CL.ts │ │ ├── bitcoin_es_CO.ts │ │ ├── bitcoin_es_DO.ts │ │ ├── bitcoin_es_MX.ts │ │ ├── bitcoin_es_VE.ts │ │ ├── bitcoin_et.ts │ │ ├── bitcoin_eu.ts │ │ ├── bitcoin_fa.ts │ │ ├── bitcoin_fi.ts │ │ ├── bitcoin_fil.ts │ │ ├── bitcoin_fr.ts │ │ ├── bitcoin_gl_ES.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_km.ts │ │ ├── bitcoin_ko.ts │ │ ├── bitcoin_ku_IQ.ts │ │ ├── bitcoin_ky.ts │ │ ├── bitcoin_la.ts │ │ ├── bitcoin_lt.ts │ │ ├── bitcoin_lv.ts │ │ ├── bitcoin_mk.ts │ │ ├── bitcoin_ml.ts │ │ ├── bitcoin_mn.ts │ │ ├── bitcoin_mr_IN.ts │ │ ├── bitcoin_my.ts │ │ ├── bitcoin_nb.ts │ │ ├── bitcoin_ne.ts │ │ ├── bitcoin_nl.ts │ │ ├── bitcoin_pam.ts │ │ ├── bitcoin_pl.ts │ │ ├── bitcoin_pt.ts │ │ ├── bitcoin_pt_BR.ts │ │ ├── bitcoin_ro.ts │ │ ├── bitcoin_ru.ts │ │ ├── bitcoin_si.ts │ │ ├── bitcoin_sk.ts │ │ ├── bitcoin_sl.ts │ │ ├── bitcoin_sn.ts │ │ ├── bitcoin_sq.ts │ │ ├── bitcoin_sr.ts │ │ ├── bitcoin_sr@latin.ts │ │ ├── bitcoin_sv.ts │ │ ├── bitcoin_szl.ts │ │ ├── bitcoin_ta.ts │ │ ├── bitcoin_te.ts │ │ ├── bitcoin_th.ts │ │ ├── bitcoin_tr.ts │ │ ├── bitcoin_uk.ts │ │ ├── bitcoin_ur.ts │ │ ├── bitcoin_uz@Cyrl.ts │ │ ├── bitcoin_uz@Latn.ts │ │ ├── bitcoin_vi.ts │ │ ├── bitcoin_yo.ts │ │ ├── bitcoin_zh-Hans.ts │ │ ├── bitcoin_zh.ts │ │ ├── bitcoin_zh_CN.ts │ │ ├── bitcoin_zh_HK.ts │ │ ├── bitcoin_zh_TW.ts │ │ └── bitcoin_zu.ts │ ├── 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 │ ├── 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 │ │ ├── icons │ │ │ ├── add.png │ │ │ ├── address-book.png │ │ │ ├── bitcoin.icns │ │ │ ├── bitcoin.ico │ │ │ ├── bitcoin.png │ │ │ ├── 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 │ │ │ ├── litecoin_splash.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 │ │ ├── Makefile │ │ ├── addressbooktests.cpp │ │ ├── addressbooktests.h │ │ ├── apptests.cpp │ │ ├── apptests.h │ │ ├── compattests.cpp │ │ ├── compattests.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.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 ├── reverse_iterator.h ├── rpc │ ├── blockchain.cpp │ ├── blockchain.h │ ├── client.cpp │ ├── client.h │ ├── mining.cpp │ ├── mining.h │ ├── misc.cpp │ ├── net.cpp │ ├── protocol.h │ ├── rawtransaction.cpp │ ├── rawtransaction_util.cpp │ ├── rawtransaction_util.h │ ├── register.h │ ├── request.cpp │ ├── request.h │ ├── server.cpp │ ├── server.h │ ├── util.cpp │ └── util.h ├── scheduler.cpp ├── scheduler.h ├── script │ ├── address.cpp │ ├── address.h │ ├── bitcoinconsensus.cpp │ ├── bitcoinconsensus.h │ ├── descriptor.cpp │ ├── descriptor.h │ ├── interpreter.cpp │ ├── interpreter.h │ ├── keyorigin.h │ ├── script.cpp │ ├── script.h │ ├── script_error.cpp │ ├── script_error.h │ ├── sigcache.cpp │ ├── sigcache.h │ ├── sign.cpp │ ├── sign.h │ ├── signingprovider.cpp │ ├── signingprovider.h │ ├── standard.cpp │ └── standard.h ├── secp256k1-zkp │ ├── .gitignore │ ├── .travis.yml │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── TODO │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ ├── ax_jni_include_dir.m4 │ │ │ ├── ax_prog_cc_for_build.m4 │ │ │ └── bitcoin_secp.m4 │ ├── configure.ac │ ├── contrib │ │ ├── lax_der_parsing.c │ │ ├── lax_der_parsing.h │ │ ├── lax_der_privatekey_parsing.c │ │ └── lax_der_privatekey_parsing.h │ ├── include │ │ ├── secp256k1.h │ │ ├── secp256k1_aggsig.h │ │ ├── secp256k1_bulletproofs.h │ │ ├── secp256k1_commitment.h │ │ ├── secp256k1_ecdh.h │ │ ├── secp256k1_extrakeys.h │ │ ├── secp256k1_generator.h │ │ ├── secp256k1_rangeproof.h │ │ ├── secp256k1_recovery.h │ │ ├── secp256k1_schnorrsig.h │ │ ├── secp256k1_surjectionproof.h │ │ └── secp256k1_whitelist.h │ ├── libsecp256k1-config-nix.h │ ├── libsecp256k1-config.h │ ├── libsecp256k1.pc.in │ ├── obj │ │ └── .gitignore │ ├── sage │ │ ├── group_prover.sage │ │ ├── secp256k1.sage │ │ ├── shallue_van_de_woestijne.sage │ │ └── weierstrass_prover.sage │ └── src │ │ ├── asm │ │ └── field_10x26_arm.s │ │ ├── basic-config.h │ │ ├── bench.h │ │ ├── bench_bulletproof.c │ │ ├── bench_ecdh.c │ │ ├── bench_ecmult.c │ │ ├── bench_generator.c │ │ ├── bench_internal.c │ │ ├── bench_rangeproof.c │ │ ├── bench_recover.c │ │ ├── bench_schnorrsig.c │ │ ├── bench_sign.c │ │ ├── bench_verify.c │ │ ├── bench_whitelist.c │ │ ├── ecdsa.h │ │ ├── ecdsa_impl.h │ │ ├── eckey.h │ │ ├── eckey_impl.h │ │ ├── ecmult.h │ │ ├── ecmult_const.h │ │ ├── ecmult_const_impl.h │ │ ├── ecmult_gen.h │ │ ├── ecmult_gen_impl.h │ │ ├── ecmult_impl.h │ │ ├── field.h │ │ ├── field_10x26.h │ │ ├── field_10x26_impl.h │ │ ├── field_5x52.h │ │ ├── field_5x52_asm_impl.h │ │ ├── field_5x52_impl.h │ │ ├── field_5x52_int128_impl.h │ │ ├── field_impl.h │ │ ├── gen_context.c │ │ ├── group.h │ │ ├── group_impl.h │ │ ├── hash.h │ │ ├── hash_impl.h │ │ ├── java │ │ ├── org │ │ │ └── bitcoin │ │ │ │ ├── NativeSecp256k1.java │ │ │ │ ├── NativeSecp256k1Test.java │ │ │ │ ├── NativeSecp256k1Util.java │ │ │ │ └── Secp256k1Context.java │ │ ├── org_bitcoin_NativeSecp256k1.c │ │ ├── org_bitcoin_NativeSecp256k1.h │ │ ├── org_bitcoin_Secp256k1Context.c │ │ └── org_bitcoin_Secp256k1Context.h │ │ ├── modules │ │ ├── aggsig │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ ├── bulletproofs │ │ │ ├── Makefile.am.include │ │ │ ├── inner_product_impl.h │ │ │ ├── main_impl.h │ │ │ ├── rangeproof_impl.h │ │ │ ├── tests_impl.h │ │ │ └── util.h │ │ ├── commitment │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── pedersen_impl.h │ │ │ └── tests_impl.h │ │ ├── ecdh │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ ├── extrakeys │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── tests_exhaustive_impl.h │ │ │ └── tests_impl.h │ │ ├── generator │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ ├── rangeproof │ │ │ ├── Makefile.am.include │ │ │ ├── borromean.h │ │ │ ├── borromean_impl.h │ │ │ ├── main_impl.h │ │ │ ├── rangeproof.h │ │ │ ├── rangeproof_impl.h │ │ │ └── tests_impl.h │ │ ├── recovery │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ ├── schnorrsig │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ ├── surjection │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── surjection.h │ │ │ ├── surjection.md │ │ │ ├── surjection_impl.h │ │ │ └── tests_impl.h │ │ └── whitelist │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── tests_impl.h │ │ │ ├── whitelist.md │ │ │ └── whitelist_impl.h │ │ ├── num.h │ │ ├── num_gmp.h │ │ ├── num_gmp_impl.h │ │ ├── num_impl.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 │ │ ├── testrand.h │ │ ├── testrand_impl.h │ │ ├── tests.c │ │ ├── tests_exhaustive.c │ │ └── util.h ├── serialize.h ├── shutdown.cpp ├── shutdown.h ├── signet.cpp ├── signet.h ├── span.h ├── streams.h ├── support │ ├── allocators │ │ ├── secure.h │ │ └── zeroafterfree.h │ ├── cleanse.cpp │ ├── cleanse.h │ ├── events.h │ ├── lockedpool.cpp │ └── lockedpool.h ├── sync.cpp ├── sync.h ├── test │ ├── Makefile │ ├── README.md │ ├── addrman_tests.cpp │ ├── allocator_tests.cpp │ ├── amount_tests.cpp │ ├── arith_uint256_tests.cpp │ ├── base32_tests.cpp │ ├── base58_tests.cpp │ ├── base64_tests.cpp │ ├── bech32_tests.cpp │ ├── bip32_tests.cpp │ ├── blockchain_tests.cpp │ ├── blockencodings_tests.cpp │ ├── blockfilter_index_tests.cpp │ ├── blockfilter_tests.cpp │ ├── bloom_tests.cpp │ ├── bswap_tests.cpp │ ├── checkqueue_tests.cpp │ ├── coins_tests.cpp │ ├── compilerbug_tests.cpp │ ├── compress_tests.cpp │ ├── crypto_tests.cpp │ ├── cuckoocache_tests.cpp │ ├── data │ │ ├── README.md │ │ ├── asmap.raw │ │ ├── base58_encode_decode.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 │ ├── flatfile_tests.cpp │ ├── fs_tests.cpp │ ├── fuzz │ │ ├── FuzzedDataProvider.h │ │ ├── addition_overflow.cpp │ │ ├── addrdb.cpp │ │ ├── addrman.cpp │ │ ├── asmap.cpp │ │ ├── asmap_direct.cpp │ │ ├── autofile.cpp │ │ ├── banman.cpp │ │ ├── base_encode_decode.cpp │ │ ├── bech32.cpp │ │ ├── block.cpp │ │ ├── block_header.cpp │ │ ├── blockfilter.cpp │ │ ├── bloom_filter.cpp │ │ ├── buffered_file.cpp │ │ ├── chain.cpp │ │ ├── checkqueue.cpp │ │ ├── coins_view.cpp │ │ ├── connman.cpp │ │ ├── crypto.cpp │ │ ├── crypto_aes256.cpp │ │ ├── crypto_aes256cbc.cpp │ │ ├── crypto_chacha20.cpp │ │ ├── crypto_chacha20_poly1305_aead.cpp │ │ ├── crypto_common.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 │ │ ├── fees.cpp │ │ ├── flatfile.cpp │ │ ├── float.cpp │ │ ├── fuzz.cpp │ │ ├── fuzz.h │ │ ├── golomb_rice.cpp │ │ ├── hex.cpp │ │ ├── http_request.cpp │ │ ├── integer.cpp │ │ ├── key.cpp │ │ ├── key_io.cpp │ │ ├── kitchen_sink.cpp │ │ ├── load_external_block_file.cpp │ │ ├── locale.cpp │ │ ├── merkleblock.cpp │ │ ├── message.cpp │ │ ├── multiplication_overflow.cpp │ │ ├── net.cpp │ │ ├── net_permissions.cpp │ │ ├── netaddress.cpp │ │ ├── p2p_transport_deserializer.cpp │ │ ├── parse_hd_keypath.cpp │ │ ├── parse_iso8601.cpp │ │ ├── parse_numbers.cpp │ │ ├── parse_script.cpp │ │ ├── parse_univalue.cpp │ │ ├── partially_downloaded_block.cpp │ │ ├── policy_estimator.cpp │ │ ├── policy_estimator_io.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 │ │ ├── script.cpp │ │ ├── script_assets_test_minimizer.cpp │ │ ├── script_bitcoin_consensus.cpp │ │ ├── script_descriptor_cache.cpp │ │ ├── script_flags.cpp │ │ ├── script_interpreter.cpp │ │ ├── script_ops.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 │ │ ├── span.cpp │ │ ├── spanparsing.cpp │ │ ├── string.cpp │ │ ├── strprintf.cpp │ │ ├── system.cpp │ │ ├── timedata.cpp │ │ ├── transaction.cpp │ │ ├── tx_in.cpp │ │ ├── tx_out.cpp │ │ ├── txrequest.cpp │ │ ├── util.h │ │ └── versionbits.cpp │ ├── getarg_tests.cpp │ ├── hash_tests.cpp │ ├── interfaces_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 │ ├── multisig_tests.cpp │ ├── net_tests.cpp │ ├── netbase_tests.cpp │ ├── pmt_tests.cpp │ ├── policy_fee_tests.cpp │ ├── policyestimator_tests.cpp │ ├── pow_tests.cpp │ ├── prevector_tests.cpp │ ├── raii_event_tests.cpp │ ├── random_tests.cpp │ ├── ref_tests.cpp │ ├── reverselock_tests.cpp │ ├── rpc_tests.cpp │ ├── sanity_tests.cpp │ ├── scheduler_tests.cpp │ ├── script_p2sh_tests.cpp │ ├── script_standard_tests.cpp │ ├── script_tests.cpp │ ├── scriptnum10.h │ ├── scriptnum_tests.cpp │ ├── scrypt_tests.cpp │ ├── serialize_tests.cpp │ ├── settings_tests.cpp │ ├── sighash_tests.cpp │ ├── sigopcount_tests.cpp │ ├── skiplist_tests.cpp │ ├── streams_tests.cpp │ ├── sync_tests.cpp │ ├── system_tests.cpp │ ├── timedata_tests.cpp │ ├── torcontrol_tests.cpp │ ├── transaction_tests.cpp │ ├── txindex_tests.cpp │ ├── txrequest_tests.cpp │ ├── txvalidation_tests.cpp │ ├── txvalidationcache_tests.cpp │ ├── uint256_tests.cpp │ ├── util │ │ ├── README.md │ │ ├── blockfilter.cpp │ │ ├── blockfilter.h │ │ ├── logging.cpp │ │ ├── logging.h │ │ ├── mining.cpp │ │ ├── mining.h │ │ ├── net.cpp │ │ ├── net.h │ │ ├── setup_common.cpp │ │ ├── setup_common.h │ │ ├── str.cpp │ │ ├── str.h │ │ ├── transaction_utils.cpp │ │ ├── transaction_utils.h │ │ ├── validation.cpp │ │ ├── validation.h │ │ ├── wallet.cpp │ │ └── wallet.h │ ├── util_tests.cpp │ ├── util_threadnames_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 ├── threadinterrupt.cpp ├── threadinterrupt.h ├── threadsafety.h ├── timedata.cpp ├── timedata.h ├── tinyformat.h ├── torcontrol.cpp ├── torcontrol.h ├── txdb.cpp ├── txdb.h ├── txmempool.cpp ├── txmempool.h ├── txrequest.cpp ├── txrequest.h ├── uint256.cpp ├── uint256.h ├── undo.h ├── univalue │ ├── .gitignore │ ├── .travis.yml │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── TODO │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ └── .gitignore │ ├── configure.ac │ ├── gen │ │ └── gen.cpp │ ├── include │ │ └── univalue.h │ ├── lib │ │ ├── .gitignore │ │ ├── univalue.cpp │ │ ├── univalue_escapes.h │ │ ├── univalue_get.cpp │ │ ├── univalue_read.cpp │ │ ├── univalue_utffilter.h │ │ └── univalue_write.cpp │ ├── pc │ │ ├── libunivalue-uninstalled.pc.in │ │ └── libunivalue.pc.in │ └── test │ │ ├── .gitignore │ │ ├── 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 │ │ ├── no_nul.cpp │ │ ├── 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 │ ├── asmap.cpp │ ├── asmap.h │ ├── bip32.cpp │ ├── bip32.h │ ├── bytevectorhash.cpp │ ├── bytevectorhash.h │ ├── check.h │ ├── error.cpp │ ├── error.h │ ├── fees.cpp │ ├── fees.h │ ├── golombrice.h │ ├── macros.h │ ├── memory.h │ ├── message.cpp │ ├── message.h │ ├── moneystr.cpp │ ├── moneystr.h │ ├── rbf.cpp │ ├── rbf.h │ ├── ref.h │ ├── settings.cpp │ ├── settings.h │ ├── spanparsing.cpp │ ├── spanparsing.h │ ├── strencodings.cpp │ ├── strencodings.h │ ├── string.cpp │ ├── string.h │ ├── system.cpp │ ├── system.h │ ├── threadnames.cpp │ ├── threadnames.h │ ├── time.cpp │ ├── time.h │ ├── translation.h │ ├── ui_change_type.h │ ├── url.cpp │ ├── url.h │ └── vector.h ├── validation.cpp ├── validation.h ├── validationinterface.cpp ├── validationinterface.h ├── version.h ├── versionbits.cpp ├── versionbits.h ├── versionbitsinfo.cpp ├── versionbitsinfo.h ├── wallet │ ├── bdb.cpp │ ├── bdb.h │ ├── coincontrol.cpp │ ├── coincontrol.h │ ├── coinselection.cpp │ ├── coinselection.h │ ├── context.cpp │ ├── context.h │ ├── crypter.cpp │ ├── crypter.h │ ├── db.cpp │ ├── db.h │ ├── feebumper.cpp │ ├── feebumper.h │ ├── fees.cpp │ ├── fees.h │ ├── init.cpp │ ├── ismine.h │ ├── load.cpp │ ├── load.h │ ├── reserve.cpp │ ├── reserve.h │ ├── rpcdump.cpp │ ├── rpcwallet.cpp │ ├── rpcwallet.h │ ├── salvage.cpp │ ├── salvage.h │ ├── scriptpubkeyman.cpp │ ├── scriptpubkeyman.h │ ├── sqlite.cpp │ ├── sqlite.h │ ├── test │ │ ├── coinselector_tests.cpp │ │ ├── db_tests.cpp │ │ ├── init_test_fixture.cpp │ │ ├── init_test_fixture.h │ │ ├── init_tests.cpp │ │ ├── ismine_tests.cpp │ │ ├── psbt_wallet_tests.cpp │ │ ├── scriptpubkeyman_tests.cpp │ │ ├── wallet_crypto_tests.cpp │ │ ├── wallet_test_fixture.cpp │ │ ├── wallet_test_fixture.h │ │ └── wallet_tests.cpp │ ├── txassembler.cpp │ ├── txassembler.h │ ├── txlist.cpp │ ├── txlist.h │ ├── txrecord.cpp │ ├── txrecord.h │ ├── wallet.cpp │ ├── wallet.h │ ├── walletdb.cpp │ ├── walletdb.h │ ├── wallettool.cpp │ ├── wallettool.h │ ├── walletutil.cpp │ └── walletutil.h ├── walletinitinterface.h ├── warnings.cpp ├── warnings.h └── zmq │ ├── zmqabstractnotifier.cpp │ ├── zmqabstractnotifier.h │ ├── zmqnotificationinterface.cpp │ ├── zmqnotificationinterface.h │ ├── zmqpublishnotifier.cpp │ ├── zmqpublishnotifier.h │ ├── zmqrpc.cpp │ ├── zmqrpc.h │ ├── zmqutil.cpp │ └── zmqutil.h └── test ├── README.md ├── config.ini.in ├── functional ├── .gitignore ├── README.md ├── combine_logs.py ├── combined_log_template.html ├── create_cache.py ├── data │ ├── blockheader_testnet4.hex │ ├── invalid_txs.py │ ├── rpc_bip67.json │ ├── rpc_getblockstats.json │ └── rpc_psbt.json ├── example_test.py ├── feature_abortnode.py ├── feature_asmap.py ├── feature_assumevalid.py ├── feature_backwards_compatibility.py ├── feature_bip68_sequence.py ├── feature_block.py ├── feature_blocksdir.py ├── feature_cltv.py ├── feature_config_args.py ├── feature_csv_activation.py ├── feature_dbcrash.py ├── feature_dersig.py ├── feature_fee_estimation.py ├── feature_filelock.py ├── feature_help.py ├── feature_includeconf.py ├── feature_loadblock.py ├── feature_logging.py ├── feature_maxuploadtarget.py ├── feature_minchainwork.py ├── feature_notifications.py ├── feature_nulldummy.py ├── feature_proxy.py ├── feature_pruning.py ├── feature_rbf.py ├── feature_reindex.py ├── feature_segwit.py ├── feature_settings.py ├── feature_shutdown.py ├── feature_signet.py ├── feature_taproot.py ├── feature_uacomment.py ├── feature_versionbits_warning.py ├── interface_bitcoin_cli.py ├── interface_http.py ├── interface_rest.py ├── interface_rpc.py ├── interface_zmq.py ├── ltc_replacebyfee.py ├── mempool_accept.py ├── mempool_compatibility.py ├── mempool_expiry.py ├── mempool_limit.py ├── mempool_package_onemore.py ├── mempool_packages.py ├── mempool_persist.py ├── mempool_reorg.py ├── mempool_resurrect.py ├── mempool_spend_coinbase.py ├── mempool_unbroadcast.py ├── mempool_updatefromblock.py ├── mining_basic.py ├── mining_getblocktemplate_longpoll.py ├── mining_prioritisetransaction.py ├── mweb_basic.py ├── mweb_mining.py ├── mweb_node_compatibility.py ├── mweb_p2p.py ├── mweb_pegout_all.py ├── mweb_reorg.py ├── mweb_wallet_address.py ├── mweb_wallet_basic.py ├── mweb_wallet_upgrade.py ├── mweb_weight.py ├── p2p_addr_relay.py ├── p2p_addrv2_relay.py ├── p2p_blockfilters.py ├── p2p_blocksonly.py ├── p2p_compactblocks.py ├── p2p_disconnect_ban.py ├── p2p_dos_header_tree.py ├── p2p_eviction.py ├── p2p_feefilter.py ├── p2p_filter.py ├── p2p_fingerprint.py ├── p2p_getaddr_caching.py ├── p2p_getdata.py ├── p2p_ibd_txrelay.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_nobloomfilter_messages.py ├── p2p_node_network_limited.py ├── p2p_permissions.py ├── p2p_ping.py ├── p2p_segwit.py ├── p2p_sendheaders.py ├── p2p_timeouts.py ├── p2p_tx_download.py ├── p2p_unrequested_blocks.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_fundrawtransaction.py ├── rpc_generate.py ├── rpc_generateblock.py ├── rpc_getblockfilter.py ├── rpc_getblockstats.py ├── rpc_getchaintips.py ├── rpc_getdescriptorinfo.py ├── rpc_getpeerinfo_deprecation.py ├── rpc_help.py ├── rpc_invalid_address_message.py ├── rpc_invalidateblock.py ├── rpc_misc.py ├── rpc_named_arguments.py ├── rpc_net.py ├── rpc_preciousblock.py ├── rpc_psbt.py ├── rpc_rawtransaction.py ├── rpc_scantxoutset.py ├── rpc_setban.py ├── rpc_signmessage.py ├── rpc_signrawtransaction.py ├── rpc_txoutproof.py ├── rpc_uptime.py ├── rpc_users.py ├── rpc_whitelist.py ├── test-shell.md ├── test_framework │ ├── __init__.py │ ├── address.py │ ├── authproxy.py │ ├── bdb.py │ ├── bip340_test_vectors.csv │ ├── blocktools.py │ ├── coverage.py │ ├── descriptors.py │ ├── key.py │ ├── ltc_util.py │ ├── messages.py │ ├── muhash.py │ ├── netutil.py │ ├── p2p.py │ ├── script.py │ ├── script_util.py │ ├── segwit_addr.py │ ├── siphash.py │ ├── socks5.py │ ├── test_framework.py │ ├── test_node.py │ ├── test_shell.py │ ├── util.py │ ├── wallet.py │ └── wallet_util.py ├── test_runner.py ├── tool_wallet.py ├── wallet_abandonconflict.py ├── wallet_address_types.py ├── wallet_avoidreuse.py ├── wallet_backup.py ├── wallet_balance.py ├── wallet_basic.py ├── wallet_bumpfee.py ├── wallet_coinbase_category.py ├── wallet_create_tx.py ├── wallet_createwallet.py ├── wallet_descriptor.py ├── wallet_disable.py ├── wallet_dump.py ├── wallet_encryption.py ├── wallet_fallbackfee.py ├── wallet_groups.py ├── wallet_hd.py ├── wallet_implicitsegwit.py ├── wallet_import_rescan.py ├── wallet_import_with_label.py ├── wallet_importdescriptors.py ├── wallet_importmulti.py ├── wallet_importprunedfunds.py ├── wallet_keypool.py ├── wallet_keypool_topup.py ├── wallet_labels.py ├── wallet_listreceivedby.py ├── wallet_listsinceblock.py ├── wallet_listtransactions.py ├── wallet_listwallettransactions.py ├── wallet_multiwallet.py ├── wallet_reorgsrestore.py ├── wallet_resendwallettransactions.py ├── wallet_scriptaddress2.py ├── wallet_send.py ├── wallet_startup.py ├── wallet_txn_clone.py ├── wallet_txn_doublespend.py ├── wallet_upgradewallet.py └── wallet_watchonly.py ├── fuzz └── test_runner.py ├── get_previous_releases.py ├── lint ├── README.md ├── check-doc.py ├── check-rpc-mappings.py ├── commit-script-check.sh ├── extended-lint-all.sh ├── extended-lint-cppcheck.sh ├── git-subtree-check.sh ├── lint-all.sh ├── lint-assertions.sh ├── lint-circular-dependencies.sh ├── lint-cpp.sh ├── lint-filenames.sh ├── lint-format-strings.py ├── lint-format-strings.sh ├── lint-git-commit-check.sh ├── lint-include-guards.sh ├── lint-includes.sh ├── lint-locale-dependence.sh ├── lint-logs.sh ├── lint-python-mutable-default-parameters.sh ├── lint-python-utf8-encoding.sh ├── lint-python.sh ├── lint-qt.sh ├── lint-rpc-help.sh ├── lint-shebang.sh ├── lint-shell-locale.sh ├── lint-shell.sh ├── lint-spelling.ignore-words.txt ├── lint-spelling.sh ├── lint-submodule.sh ├── lint-tests.sh └── lint-whitespace.sh ├── sanitizer_suppressions ├── lsan ├── tsan └── ubsan └── util ├── bitcoin-util-test.py ├── data ├── 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 ├── txcreatesignv1.hex ├── txcreatesignv1.json └── txcreatesignv2.hex └── rpcauth-test.py /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.fuzzbuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/.fuzzbuzz.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | src/clientversion.cpp export-subst 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.5.6 2 | -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/.style.yapf -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/.tx/config -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/autogen.sh -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/lint/04_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/lint/04_install.sh -------------------------------------------------------------------------------- /ci/lint/05_before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/lint/05_before_script.sh -------------------------------------------------------------------------------- /ci/lint/06_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/lint/06_script.sh -------------------------------------------------------------------------------- /ci/retry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/retry/README.md -------------------------------------------------------------------------------- /ci/retry/retry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/retry/retry -------------------------------------------------------------------------------- /ci/test/00_setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/00_setup_env.sh -------------------------------------------------------------------------------- /ci/test/00_setup_env_arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/00_setup_env_arm.sh -------------------------------------------------------------------------------- /ci/test/00_setup_env_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/00_setup_env_mac.sh -------------------------------------------------------------------------------- /ci/test/04_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/04_install.sh -------------------------------------------------------------------------------- /ci/test/05_before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/05_before_script.sh -------------------------------------------------------------------------------- /ci/test/06_script_a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/06_script_a.sh -------------------------------------------------------------------------------- /ci/test/06_script_b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/06_script_b.sh -------------------------------------------------------------------------------- /ci/test/wrap-qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/wrap-qemu.sh -------------------------------------------------------------------------------- /ci/test/wrap-valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/wrap-valgrind.sh -------------------------------------------------------------------------------- /ci/test/wrap-wine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test/wrap-wine.sh -------------------------------------------------------------------------------- /ci/test_run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/ci/test_run_all.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/bitcoin-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/bitcoin-qt.pro -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/filter-lcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/filter-lcov.py -------------------------------------------------------------------------------- /contrib/gitian-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/gitian-build.py -------------------------------------------------------------------------------- /contrib/guix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/guix/README.md -------------------------------------------------------------------------------- /contrib/guix/guix-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/guix/guix-build.sh -------------------------------------------------------------------------------- /contrib/guix/manifest.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/guix/manifest.scm -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/bitcoind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/init/bitcoind.conf -------------------------------------------------------------------------------- /contrib/init/bitcoind.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/init/bitcoind.init -------------------------------------------------------------------------------- /contrib/install_db4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/install_db4.sh -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/gen-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/macdeploy/gen-sdk -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/seeds/.gitignore: -------------------------------------------------------------------------------- 1 | seeds_main.txt 2 | -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/valgrind.supp -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | 82bcf405f6db1d55b684a1f63a4aabad376cdad7 2 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-sha512-root-commit: -------------------------------------------------------------------------------- 1 | 309bf16257b2395ce502017be627186b749ee749 2 | -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /depends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/.gitignore -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/builders/default.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/config.site.in -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/hosts/android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/hosts/android.mk -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/bdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/bdb.mk -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/capnp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/capnp.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libfmt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/libfmt.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/openssl.mk -------------------------------------------------------------------------------- /depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/qt.mk -------------------------------------------------------------------------------- /depends/packages/sqlite.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/sqlite.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /depends/packages/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/depends/packages/zlib.mk -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | Doxyfile 2 | -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/JSON-RPC-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/JSON-RPC-interface.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_doxygen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/README_doxygen.md -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/benchmarking.md -------------------------------------------------------------------------------- /doc/bips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/bips.md -------------------------------------------------------------------------------- /doc/bitcoin-conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/bitcoin-conf.md -------------------------------------------------------------------------------- /doc/build-freebsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/build-freebsd.md -------------------------------------------------------------------------------- /doc/build-netbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/build-netbsd.md -------------------------------------------------------------------------------- /doc/build-openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/build-openbsd.md -------------------------------------------------------------------------------- /doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/build-osx.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/build-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/build-windows.md -------------------------------------------------------------------------------- /doc/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/dependencies.md -------------------------------------------------------------------------------- /doc/descriptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/descriptors.md -------------------------------------------------------------------------------- /doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/developer-notes.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/fuzzing.md -------------------------------------------------------------------------------- /doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/gitian-building.md -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/man/Makefile.am -------------------------------------------------------------------------------- /doc/man/litecoin-cli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/man/litecoin-cli.1 -------------------------------------------------------------------------------- /doc/man/litecoin-qt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/man/litecoin-qt.1 -------------------------------------------------------------------------------- /doc/man/litecoin-tx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/man/litecoin-tx.1 -------------------------------------------------------------------------------- /doc/man/litecoin-wallet.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/man/litecoin-wallet.1 -------------------------------------------------------------------------------- /doc/man/litecoind.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/man/litecoind.1 -------------------------------------------------------------------------------- /doc/multiprocess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/multiprocess.md -------------------------------------------------------------------------------- /doc/mweb/light-clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/mweb/light-clients.md -------------------------------------------------------------------------------- /doc/mweb/mining-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/mweb/mining-changes.md -------------------------------------------------------------------------------- /doc/mweb/pmmr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/mweb/pmmr.md -------------------------------------------------------------------------------- /doc/mweb/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/mweb/store.md -------------------------------------------------------------------------------- /doc/productivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/productivity.md -------------------------------------------------------------------------------- /doc/psbt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/psbt.md -------------------------------------------------------------------------------- /doc/reduce-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/reduce-memory.md -------------------------------------------------------------------------------- /doc/reduce-traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/reduce-traffic.md -------------------------------------------------------------------------------- /doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/release-notes.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/dreamhighcodestar/coin/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/shared-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/shared-libraries.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/translation_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/translation_process.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /libbitcoinconsensus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/libbitcoinconsensus.pc.in -------------------------------------------------------------------------------- /share/genbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/genbuild.sh -------------------------------------------------------------------------------- /share/pixmaps/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/pixmaps/bitcoin.ico -------------------------------------------------------------------------------- /share/pixmaps/bitcoin16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/pixmaps/bitcoin16.png -------------------------------------------------------------------------------- /share/pixmaps/bitcoin16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/pixmaps/bitcoin16.xpm -------------------------------------------------------------------------------- /share/pixmaps/bitcoin32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/pixmaps/bitcoin32.png -------------------------------------------------------------------------------- /share/pixmaps/bitcoin32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/pixmaps/bitcoin32.xpm -------------------------------------------------------------------------------- /share/pixmaps/bitcoin64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/pixmaps/bitcoin64.png -------------------------------------------------------------------------------- /share/pixmaps/bitcoin64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/pixmaps/bitcoin64.xpm -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/rpcauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/rpcauth/README.md -------------------------------------------------------------------------------- /share/rpcauth/rpcauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/rpcauth/rpcauth.py -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.bench.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/Makefile.bench.include -------------------------------------------------------------------------------- /src/Makefile.crc32c.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/Makefile.crc32c.include -------------------------------------------------------------------------------- /src/Makefile.qt.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/Makefile.qt.include -------------------------------------------------------------------------------- /src/Makefile.qttest.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/Makefile.qttest.include -------------------------------------------------------------------------------- /src/Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/Makefile.test.include -------------------------------------------------------------------------------- /src/addrdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/addrdb.cpp -------------------------------------------------------------------------------- /src/addrdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/addrdb.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/amount.h -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/attributes.h -------------------------------------------------------------------------------- /src/banman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/banman.cpp -------------------------------------------------------------------------------- /src/banman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/banman.h -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bech32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bech32.cpp -------------------------------------------------------------------------------- /src/bech32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bech32.h -------------------------------------------------------------------------------- /src/bench/.gitignore: -------------------------------------------------------------------------------- 1 | bench_litecoin 2 | -------------------------------------------------------------------------------- /src/bench/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/addrman.cpp -------------------------------------------------------------------------------- /src/bench/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/base58.cpp -------------------------------------------------------------------------------- /src/bench/bech32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/bech32.cpp -------------------------------------------------------------------------------- /src/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/bench.cpp -------------------------------------------------------------------------------- /src/bench/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/bench.h -------------------------------------------------------------------------------- /src/bench/bench_bitcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/bench_bitcoin.cpp -------------------------------------------------------------------------------- /src/bench/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/chacha20.cpp -------------------------------------------------------------------------------- /src/bench/checkblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/checkblock.cpp -------------------------------------------------------------------------------- /src/bench/checkqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/checkqueue.cpp -------------------------------------------------------------------------------- /src/bench/crypto_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/crypto_hash.cpp -------------------------------------------------------------------------------- /src/bench/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/data.cpp -------------------------------------------------------------------------------- /src/bench/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/data.h -------------------------------------------------------------------------------- /src/bench/examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/examples.cpp -------------------------------------------------------------------------------- /src/bench/gcs_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/gcs_filter.cpp -------------------------------------------------------------------------------- /src/bench/hashpadding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/hashpadding.cpp -------------------------------------------------------------------------------- /src/bench/lockedpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/lockedpool.cpp -------------------------------------------------------------------------------- /src/bench/merkle_root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/merkle_root.cpp -------------------------------------------------------------------------------- /src/bench/nanobench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/nanobench.cpp -------------------------------------------------------------------------------- /src/bench/nanobench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/nanobench.h -------------------------------------------------------------------------------- /src/bench/poly1305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/poly1305.cpp -------------------------------------------------------------------------------- /src/bench/prevector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/prevector.cpp -------------------------------------------------------------------------------- /src/bench/rollingbloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/rollingbloom.cpp -------------------------------------------------------------------------------- /src/bench/rpc_mempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/rpc_mempool.cpp -------------------------------------------------------------------------------- /src/bench/util_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/util_time.cpp -------------------------------------------------------------------------------- /src/bench/verify_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bench/verify_script.cpp -------------------------------------------------------------------------------- /src/bitcoin-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bitcoin-cli-res.rc -------------------------------------------------------------------------------- /src/bitcoin-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bitcoin-cli.cpp -------------------------------------------------------------------------------- /src/bitcoin-tx-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bitcoin-tx-res.rc -------------------------------------------------------------------------------- /src/bitcoin-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bitcoin-tx.cpp -------------------------------------------------------------------------------- /src/bitcoin-wallet-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bitcoin-wallet-res.rc -------------------------------------------------------------------------------- /src/bitcoin-wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bitcoin-wallet.cpp -------------------------------------------------------------------------------- /src/bitcoind-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bitcoind-res.rc -------------------------------------------------------------------------------- /src/bitcoind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bitcoind.cpp -------------------------------------------------------------------------------- /src/blockencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/blockencodings.cpp -------------------------------------------------------------------------------- /src/blockencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/blockencodings.h -------------------------------------------------------------------------------- /src/blockfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/blockfilter.cpp -------------------------------------------------------------------------------- /src/blockfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/blockfilter.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat/assumptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/assumptions.h -------------------------------------------------------------------------------- /src/compat/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/byteswap.h -------------------------------------------------------------------------------- /src/compat/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/cpuid.h -------------------------------------------------------------------------------- /src/compat/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/endian.h -------------------------------------------------------------------------------- /src/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibc_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/glibc_sanity.cpp -------------------------------------------------------------------------------- /src/compat/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/sanity.h -------------------------------------------------------------------------------- /src/compat/stdin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/stdin.cpp -------------------------------------------------------------------------------- /src/compat/stdin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/stdin.h -------------------------------------------------------------------------------- /src/compat/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compat/strnlen.cpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/consensus/consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/consensus/consensus.h -------------------------------------------------------------------------------- /src/consensus/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/consensus/merkle.cpp -------------------------------------------------------------------------------- /src/consensus/merkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/consensus/merkle.h -------------------------------------------------------------------------------- /src/consensus/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/consensus/params.h -------------------------------------------------------------------------------- /src/consensus/tx_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/consensus/tx_check.cpp -------------------------------------------------------------------------------- /src/consensus/tx_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/consensus/tx_check.h -------------------------------------------------------------------------------- /src/consensus/tx_verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/consensus/tx_verify.cpp -------------------------------------------------------------------------------- /src/consensus/tx_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/consensus/tx_verify.h -------------------------------------------------------------------------------- /src/consensus/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/consensus/validation.h -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/core_memusage.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crc32c/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/.appveyor.yml -------------------------------------------------------------------------------- /src/crc32c/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/.clang-format -------------------------------------------------------------------------------- /src/crc32c/.clang_complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/.clang_complete -------------------------------------------------------------------------------- /src/crc32c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/.gitignore -------------------------------------------------------------------------------- /src/crc32c/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crc32c/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/.travis.yml -------------------------------------------------------------------------------- /src/crc32c/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/AUTHORS -------------------------------------------------------------------------------- /src/crc32c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/CMakeLists.txt -------------------------------------------------------------------------------- /src/crc32c/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/crc32c/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/LICENSE -------------------------------------------------------------------------------- /src/crc32c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/README.md -------------------------------------------------------------------------------- /src/crc32c/src/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crc32c/src/crc32c.cc -------------------------------------------------------------------------------- /src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/aes.cpp -------------------------------------------------------------------------------- /src/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/aes.h -------------------------------------------------------------------------------- /src/crypto/blake3/.gitignore: -------------------------------------------------------------------------------- 1 | blake3 2 | example 3 | *.o 4 | -------------------------------------------------------------------------------- /src/crypto/blake3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/blake3/README.md -------------------------------------------------------------------------------- /src/crypto/blake3/blake3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/blake3/blake3.c -------------------------------------------------------------------------------- /src/crypto/blake3/blake3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/blake3/blake3.h -------------------------------------------------------------------------------- /src/crypto/blake3/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/blake3/example.c -------------------------------------------------------------------------------- /src/crypto/blake3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/blake3/main.c -------------------------------------------------------------------------------- /src/crypto/blake3/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/blake3/test.py -------------------------------------------------------------------------------- /src/crypto/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/chacha20.cpp -------------------------------------------------------------------------------- /src/crypto/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/chacha20.h -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/ctaes/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/ctaes/COPYING -------------------------------------------------------------------------------- /src/crypto/ctaes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/ctaes/README.md -------------------------------------------------------------------------------- /src/crypto/ctaes/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/ctaes/bench.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/ctaes/ctaes.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/ctaes/ctaes.h -------------------------------------------------------------------------------- /src/crypto/ctaes/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/ctaes/test.c -------------------------------------------------------------------------------- /src/crypto/hkdf_sha256_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/hkdf_sha256_32.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/poly1305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/poly1305.cpp -------------------------------------------------------------------------------- /src/crypto/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/poly1305.h -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/scrypt-sse2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/scrypt-sse2.cpp -------------------------------------------------------------------------------- /src/crypto/scrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/scrypt.cpp -------------------------------------------------------------------------------- /src/crypto/scrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/scrypt.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha256_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha256_avx2.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_shani.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha256_shani.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_sse4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha256_sse4.cpp -------------------------------------------------------------------------------- /src/crypto/sha256_sse41.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha256_sse41.cpp -------------------------------------------------------------------------------- /src/crypto/sha3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha3.cpp -------------------------------------------------------------------------------- /src/crypto/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha3.h -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/crypto/siphash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/siphash.cpp -------------------------------------------------------------------------------- /src/crypto/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/crypto/siphash.h -------------------------------------------------------------------------------- /src/cuckoocache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/cuckoocache.h -------------------------------------------------------------------------------- /src/dbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/dbwrapper.cpp -------------------------------------------------------------------------------- /src/dbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/dbwrapper.h -------------------------------------------------------------------------------- /src/dummywallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/dummywallet.cpp -------------------------------------------------------------------------------- /src/flatfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/flatfile.cpp -------------------------------------------------------------------------------- /src/flatfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/flatfile.h -------------------------------------------------------------------------------- /src/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/fs.cpp -------------------------------------------------------------------------------- /src/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/fs.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/httprpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/httprpc.cpp -------------------------------------------------------------------------------- /src/httprpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/httprpc.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/index/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/index/base.cpp -------------------------------------------------------------------------------- /src/index/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/index/base.h -------------------------------------------------------------------------------- /src/index/disktxpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/index/disktxpos.h -------------------------------------------------------------------------------- /src/index/txindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/index/txindex.cpp -------------------------------------------------------------------------------- /src/index/txindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/index/txindex.h -------------------------------------------------------------------------------- /src/indirectmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/indirectmap.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/init.h -------------------------------------------------------------------------------- /src/interfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/interfaces/README.md -------------------------------------------------------------------------------- /src/interfaces/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/interfaces/chain.cpp -------------------------------------------------------------------------------- /src/interfaces/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/interfaces/chain.h -------------------------------------------------------------------------------- /src/interfaces/handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/interfaces/handler.cpp -------------------------------------------------------------------------------- /src/interfaces/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/interfaces/handler.h -------------------------------------------------------------------------------- /src/interfaces/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/interfaces/node.cpp -------------------------------------------------------------------------------- /src/interfaces/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/interfaces/node.h -------------------------------------------------------------------------------- /src/interfaces/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/interfaces/wallet.cpp -------------------------------------------------------------------------------- /src/interfaces/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/interfaces/wallet.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/key.h -------------------------------------------------------------------------------- /src/key_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/key_io.cpp -------------------------------------------------------------------------------- /src/key_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/key_io.h -------------------------------------------------------------------------------- /src/leveldb/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/.appveyor.yml -------------------------------------------------------------------------------- /src/leveldb/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/.clang-format -------------------------------------------------------------------------------- /src/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/.gitignore -------------------------------------------------------------------------------- /src/leveldb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/.travis.yml -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/CMakeLists.txt -------------------------------------------------------------------------------- /src/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/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/dreamhighcodestar/coin/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/log_format.h -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/doc/impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/doc/impl.md -------------------------------------------------------------------------------- /src/leveldb/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/doc/index.md -------------------------------------------------------------------------------- /src/leveldb/port/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/port/README.md -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/table/block.cc -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/table/format.cc -------------------------------------------------------------------------------- /src/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/table/format.h -------------------------------------------------------------------------------- /src/leveldb/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/table/merger.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/table/merger.h -------------------------------------------------------------------------------- /src/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/table/table.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/coding.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/logging.cc -------------------------------------------------------------------------------- /src/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/logging.h -------------------------------------------------------------------------------- /src/leveldb/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/options.cc -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/status.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/leveldb/util/testutil.h -------------------------------------------------------------------------------- /src/libmw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/.gitignore -------------------------------------------------------------------------------- /src/libmw/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/LICENSE -------------------------------------------------------------------------------- /src/libmw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/README.md -------------------------------------------------------------------------------- /src/libmw/deps/ghc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/deps/ghc/LICENSE -------------------------------------------------------------------------------- /src/libmw/src/db/CoinDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/src/db/CoinDB.cpp -------------------------------------------------------------------------------- /src/libmw/src/db/LeafDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/src/db/LeafDB.cpp -------------------------------------------------------------------------------- /src/libmw/src/file/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/src/file/File.cpp -------------------------------------------------------------------------------- /src/libmw/src/mmr/IMMR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/src/mmr/IMMR.cpp -------------------------------------------------------------------------------- /src/libmw/src/mmr/Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/src/mmr/Index.cpp -------------------------------------------------------------------------------- /src/libmw/src/mmr/PMMR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/libmw/src/mmr/PMMR.cpp -------------------------------------------------------------------------------- /src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/logging.cpp -------------------------------------------------------------------------------- /src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/logging.h -------------------------------------------------------------------------------- /src/logging/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/logging/timer.h -------------------------------------------------------------------------------- /src/memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/memusage.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/miner.cpp -------------------------------------------------------------------------------- /src/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/miner.h -------------------------------------------------------------------------------- /src/mweb/mweb_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_db.h -------------------------------------------------------------------------------- /src/mweb/mweb_miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_miner.cpp -------------------------------------------------------------------------------- /src/mweb/mweb_miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_miner.h -------------------------------------------------------------------------------- /src/mweb/mweb_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_models.h -------------------------------------------------------------------------------- /src/mweb/mweb_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_node.cpp -------------------------------------------------------------------------------- /src/mweb/mweb_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_node.h -------------------------------------------------------------------------------- /src/mweb/mweb_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_policy.cpp -------------------------------------------------------------------------------- /src/mweb/mweb_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_policy.h -------------------------------------------------------------------------------- /src/mweb/mweb_transact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_transact.cpp -------------------------------------------------------------------------------- /src/mweb/mweb_transact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_transact.h -------------------------------------------------------------------------------- /src/mweb/mweb_wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_wallet.cpp -------------------------------------------------------------------------------- /src/mweb/mweb_wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/mweb/mweb_wallet.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/net.h -------------------------------------------------------------------------------- /src/net_permissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/net_permissions.cpp -------------------------------------------------------------------------------- /src/net_permissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/net_permissions.h -------------------------------------------------------------------------------- /src/net_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/net_processing.cpp -------------------------------------------------------------------------------- /src/net_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/net_processing.h -------------------------------------------------------------------------------- /src/net_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/net_types.h -------------------------------------------------------------------------------- /src/netaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/netaddress.cpp -------------------------------------------------------------------------------- /src/netaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/netaddress.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/netmessagemaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/netmessagemaker.h -------------------------------------------------------------------------------- /src/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/README.md -------------------------------------------------------------------------------- /src/node/coin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/coin.cpp -------------------------------------------------------------------------------- /src/node/coin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/coin.h -------------------------------------------------------------------------------- /src/node/coinstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/coinstats.cpp -------------------------------------------------------------------------------- /src/node/coinstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/coinstats.h -------------------------------------------------------------------------------- /src/node/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/context.cpp -------------------------------------------------------------------------------- /src/node/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/context.h -------------------------------------------------------------------------------- /src/node/psbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/psbt.cpp -------------------------------------------------------------------------------- /src/node/psbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/psbt.h -------------------------------------------------------------------------------- /src/node/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/transaction.cpp -------------------------------------------------------------------------------- /src/node/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/transaction.h -------------------------------------------------------------------------------- /src/node/ui_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/ui_interface.cpp -------------------------------------------------------------------------------- /src/node/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/ui_interface.h -------------------------------------------------------------------------------- /src/node/utxo_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/node/utxo_snapshot.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/optional.h -------------------------------------------------------------------------------- /src/outputtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/outputtype.cpp -------------------------------------------------------------------------------- /src/outputtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/outputtype.h -------------------------------------------------------------------------------- /src/policy/feerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/feerate.cpp -------------------------------------------------------------------------------- /src/policy/feerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/feerate.h -------------------------------------------------------------------------------- /src/policy/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/fees.cpp -------------------------------------------------------------------------------- /src/policy/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/fees.h -------------------------------------------------------------------------------- /src/policy/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/policy.cpp -------------------------------------------------------------------------------- /src/policy/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/policy.h -------------------------------------------------------------------------------- /src/policy/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/rbf.cpp -------------------------------------------------------------------------------- /src/policy/rbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/rbf.h -------------------------------------------------------------------------------- /src/policy/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/settings.cpp -------------------------------------------------------------------------------- /src/policy/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/policy/settings.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/prevector.h -------------------------------------------------------------------------------- /src/primitives/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/primitives/block.cpp -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/psbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/psbt.cpp -------------------------------------------------------------------------------- /src/psbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/psbt.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/Makefile -------------------------------------------------------------------------------- /src/qt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/README.md -------------------------------------------------------------------------------- /src/qt/addressbookpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/addressbookpage.cpp -------------------------------------------------------------------------------- /src/qt/addressbookpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/addressbookpage.h -------------------------------------------------------------------------------- /src/qt/addresstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/addresstablemodel.h -------------------------------------------------------------------------------- /src/qt/bantablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bantablemodel.cpp -------------------------------------------------------------------------------- /src/qt/bantablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bantablemodel.h -------------------------------------------------------------------------------- /src/qt/bitcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoin.cpp -------------------------------------------------------------------------------- /src/qt/bitcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoin.h -------------------------------------------------------------------------------- /src/qt/bitcoin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoin.qrc -------------------------------------------------------------------------------- /src/qt/bitcoin_locale.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoin_locale.qrc -------------------------------------------------------------------------------- /src/qt/bitcoinamountfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoinamountfield.h -------------------------------------------------------------------------------- /src/qt/bitcoingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoingui.cpp -------------------------------------------------------------------------------- /src/qt/bitcoingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoingui.h -------------------------------------------------------------------------------- /src/qt/bitcoinstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoinstrings.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoinunits.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/bitcoinunits.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/coincontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/coincontroldialog.h -------------------------------------------------------------------------------- /src/qt/createwalletdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/createwalletdialog.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/csvmodelwriter.cpp -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/editaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/editaddressdialog.h -------------------------------------------------------------------------------- /src/qt/forms/debugwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/forms/debugwindow.ui -------------------------------------------------------------------------------- /src/qt/forms/intro.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/forms/intro.ui -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/intro.cpp -------------------------------------------------------------------------------- /src/qt/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/intro.h -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_af.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_af.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_am.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_am.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_ar.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_be.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_be.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_bg.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_bn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_bn.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_bs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_bs.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_ca.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_cs.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_cy.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_da.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_de.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_el.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_en.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_eo.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_es.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_et.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_eu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_eu.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_fa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_fa.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_fi.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_fr.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_he.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_hi.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_hr.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_hu.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_id.ts -------------------------------------------------------------------------------- /src/qt/locale/bitcoin_is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/locale/bitcoin_is.ts -------------------------------------------------------------------------------- /src/qt/macos_appnap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/macos_appnap.h -------------------------------------------------------------------------------- /src/qt/macos_appnap.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/macos_appnap.mm -------------------------------------------------------------------------------- /src/qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/main.cpp -------------------------------------------------------------------------------- /src/qt/modaloverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/modaloverlay.cpp -------------------------------------------------------------------------------- /src/qt/modaloverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/modaloverlay.h -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/openuridialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/openuridialog.cpp -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/optionsdialog.cpp -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/paymentserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/paymentserver.cpp -------------------------------------------------------------------------------- /src/qt/paymentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/paymentserver.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/peertablemodel.cpp -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/platformstyle.cpp -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/qrimagewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/qrimagewidget.cpp -------------------------------------------------------------------------------- /src/qt/qrimagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/qrimagewidget.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/qvaluecombobox.cpp -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/res/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/res/icons/add.png -------------------------------------------------------------------------------- /src/qt/res/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/res/icons/edit.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/res/icons/eye.png -------------------------------------------------------------------------------- /src/qt/res/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/res/icons/send.png -------------------------------------------------------------------------------- /src/qt/res/src/mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/res/src/mine.svg -------------------------------------------------------------------------------- /src/qt/res/src/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/res/src/proxy.svg -------------------------------------------------------------------------------- /src/qt/res/src/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/res/src/qt.svg -------------------------------------------------------------------------------- /src/qt/res/src/tx_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/res/src/tx_in.svg -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/sendcoinsdialog.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/sendcoinsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/Makefile -------------------------------------------------------------------------------- /src/qt/test/apptests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/apptests.cpp -------------------------------------------------------------------------------- /src/qt/test/apptests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/apptests.h -------------------------------------------------------------------------------- /src/qt/test/compattests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/compattests.h -------------------------------------------------------------------------------- /src/qt/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/test_main.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/uritests.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/test/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/util.cpp -------------------------------------------------------------------------------- /src/qt/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/util.h -------------------------------------------------------------------------------- /src/qt/test/wallettests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/test/wallettests.h -------------------------------------------------------------------------------- /src/qt/transactiondesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/transactiondesc.h -------------------------------------------------------------------------------- /src/qt/transactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/transactionview.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/utilitydialog.cpp -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/walletcontroller.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/random.h -------------------------------------------------------------------------------- /src/randomenv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/randomenv.cpp -------------------------------------------------------------------------------- /src/randomenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/randomenv.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverse_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/reverse_iterator.h -------------------------------------------------------------------------------- /src/rpc/blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/blockchain.cpp -------------------------------------------------------------------------------- /src/rpc/blockchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/blockchain.h -------------------------------------------------------------------------------- /src/rpc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/client.cpp -------------------------------------------------------------------------------- /src/rpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/client.h -------------------------------------------------------------------------------- /src/rpc/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/mining.cpp -------------------------------------------------------------------------------- /src/rpc/mining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/mining.h -------------------------------------------------------------------------------- /src/rpc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/misc.cpp -------------------------------------------------------------------------------- /src/rpc/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/net.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/protocol.h -------------------------------------------------------------------------------- /src/rpc/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/register.h -------------------------------------------------------------------------------- /src/rpc/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/request.cpp -------------------------------------------------------------------------------- /src/rpc/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/request.h -------------------------------------------------------------------------------- /src/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/server.cpp -------------------------------------------------------------------------------- /src/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/server.h -------------------------------------------------------------------------------- /src/rpc/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/util.cpp -------------------------------------------------------------------------------- /src/rpc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/rpc/util.h -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/script/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/address.cpp -------------------------------------------------------------------------------- /src/script/address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/address.h -------------------------------------------------------------------------------- /src/script/descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/descriptor.cpp -------------------------------------------------------------------------------- /src/script/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/descriptor.h -------------------------------------------------------------------------------- /src/script/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/interpreter.h -------------------------------------------------------------------------------- /src/script/keyorigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/keyorigin.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/script_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/script_error.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/standard.cpp -------------------------------------------------------------------------------- /src/script/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/script/standard.h -------------------------------------------------------------------------------- /src/secp256k1-zkp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/secp256k1-zkp/COPYING -------------------------------------------------------------------------------- /src/secp256k1-zkp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/secp256k1-zkp/TODO -------------------------------------------------------------------------------- /src/secp256k1-zkp/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /src/secp256k1-zkp/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/shutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/shutdown.cpp -------------------------------------------------------------------------------- /src/shutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/shutdown.h -------------------------------------------------------------------------------- /src/signet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/signet.cpp -------------------------------------------------------------------------------- /src/signet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/signet.h -------------------------------------------------------------------------------- /src/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/span.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/support/cleanse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/support/cleanse.cpp -------------------------------------------------------------------------------- /src/support/cleanse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/support/cleanse.h -------------------------------------------------------------------------------- /src/support/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/support/events.h -------------------------------------------------------------------------------- /src/support/lockedpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/support/lockedpool.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/Makefile -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/amount_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/amount_tests.cpp -------------------------------------------------------------------------------- /src/test/base32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/base32_tests.cpp -------------------------------------------------------------------------------- /src/test/base58_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/base58_tests.cpp -------------------------------------------------------------------------------- /src/test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/base64_tests.cpp -------------------------------------------------------------------------------- /src/test/bech32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/bech32_tests.cpp -------------------------------------------------------------------------------- /src/test/bip32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/bip32_tests.cpp -------------------------------------------------------------------------------- /src/test/bloom_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/bloom_tests.cpp -------------------------------------------------------------------------------- /src/test/bswap_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/bswap_tests.cpp -------------------------------------------------------------------------------- /src/test/coins_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/coins_tests.cpp -------------------------------------------------------------------------------- /src/test/crypto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/crypto_tests.cpp -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/data/asmap.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/data/asmap.raw -------------------------------------------------------------------------------- /src/test/fs_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fs_tests.cpp -------------------------------------------------------------------------------- /src/test/fuzz/addrdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/addrdb.cpp -------------------------------------------------------------------------------- /src/test/fuzz/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/addrman.cpp -------------------------------------------------------------------------------- /src/test/fuzz/asmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/asmap.cpp -------------------------------------------------------------------------------- /src/test/fuzz/banman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/banman.cpp -------------------------------------------------------------------------------- /src/test/fuzz/bech32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/bech32.cpp -------------------------------------------------------------------------------- /src/test/fuzz/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/block.cpp -------------------------------------------------------------------------------- /src/test/fuzz/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/chain.cpp -------------------------------------------------------------------------------- /src/test/fuzz/connman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/connman.cpp -------------------------------------------------------------------------------- /src/test/fuzz/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/crypto.cpp -------------------------------------------------------------------------------- /src/test/fuzz/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/fees.cpp -------------------------------------------------------------------------------- /src/test/fuzz/float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/float.cpp -------------------------------------------------------------------------------- /src/test/fuzz/fuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/fuzz.cpp -------------------------------------------------------------------------------- /src/test/fuzz/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/fuzz.h -------------------------------------------------------------------------------- /src/test/fuzz/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/hex.cpp -------------------------------------------------------------------------------- /src/test/fuzz/integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/integer.cpp -------------------------------------------------------------------------------- /src/test/fuzz/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/key.cpp -------------------------------------------------------------------------------- /src/test/fuzz/key_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/key_io.cpp -------------------------------------------------------------------------------- /src/test/fuzz/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/locale.cpp -------------------------------------------------------------------------------- /src/test/fuzz/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/message.cpp -------------------------------------------------------------------------------- /src/test/fuzz/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/net.cpp -------------------------------------------------------------------------------- /src/test/fuzz/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/pow.cpp -------------------------------------------------------------------------------- /src/test/fuzz/psbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/psbt.cpp -------------------------------------------------------------------------------- /src/test/fuzz/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/random.cpp -------------------------------------------------------------------------------- /src/test/fuzz/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/rbf.cpp -------------------------------------------------------------------------------- /src/test/fuzz/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/script.cpp -------------------------------------------------------------------------------- /src/test/fuzz/signet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/signet.cpp -------------------------------------------------------------------------------- /src/test/fuzz/span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/span.cpp -------------------------------------------------------------------------------- /src/test/fuzz/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/string.cpp -------------------------------------------------------------------------------- /src/test/fuzz/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/system.cpp -------------------------------------------------------------------------------- /src/test/fuzz/tx_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/tx_in.cpp -------------------------------------------------------------------------------- /src/test/fuzz/tx_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/tx_out.cpp -------------------------------------------------------------------------------- /src/test/fuzz/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/fuzz/util.h -------------------------------------------------------------------------------- /src/test/getarg_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/getarg_tests.cpp -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/key_io_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/key_io_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/main.cpp -------------------------------------------------------------------------------- /src/test/merkle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/merkle_tests.cpp -------------------------------------------------------------------------------- /src/test/miner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/miner_tests.cpp -------------------------------------------------------------------------------- /src/test/net_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/net_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/pow_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/pow_tests.cpp -------------------------------------------------------------------------------- /src/test/random_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/random_tests.cpp -------------------------------------------------------------------------------- /src/test/ref_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/ref_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/sanity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/sanity_tests.cpp -------------------------------------------------------------------------------- /src/test/script_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/script_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/scriptnum10.h -------------------------------------------------------------------------------- /src/test/scrypt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/scrypt_tests.cpp -------------------------------------------------------------------------------- /src/test/sync_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/sync_tests.cpp -------------------------------------------------------------------------------- /src/test/system_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/system_tests.cpp -------------------------------------------------------------------------------- /src/test/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/README.md -------------------------------------------------------------------------------- /src/test/util/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/logging.cpp -------------------------------------------------------------------------------- /src/test/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/logging.h -------------------------------------------------------------------------------- /src/test/util/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/mining.cpp -------------------------------------------------------------------------------- /src/test/util/mining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/mining.h -------------------------------------------------------------------------------- /src/test/util/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/net.cpp -------------------------------------------------------------------------------- /src/test/util/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/net.h -------------------------------------------------------------------------------- /src/test/util/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/str.cpp -------------------------------------------------------------------------------- /src/test/util/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/str.h -------------------------------------------------------------------------------- /src/test/util/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/wallet.cpp -------------------------------------------------------------------------------- /src/test/util/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util/wallet.h -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/threadinterrupt.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/threadinterrupt.h -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/torcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/torcontrol.cpp -------------------------------------------------------------------------------- /src/torcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/torcontrol.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/txrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/txrequest.cpp -------------------------------------------------------------------------------- /src/txrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/txrequest.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/univalue/.gitignore -------------------------------------------------------------------------------- /src/univalue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/univalue/.travis.yml -------------------------------------------------------------------------------- /src/univalue/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/univalue/COPYING -------------------------------------------------------------------------------- /src/univalue/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/univalue/Makefile.am -------------------------------------------------------------------------------- /src/univalue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/univalue/README.md -------------------------------------------------------------------------------- /src/univalue/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/univalue/TODO -------------------------------------------------------------------------------- /src/univalue/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/univalue/autogen.sh -------------------------------------------------------------------------------- /src/univalue/build-aux/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /*.m4 2 | -------------------------------------------------------------------------------- /src/univalue/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/univalue/configure.ac -------------------------------------------------------------------------------- /src/univalue/gen/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/univalue/gen/gen.cpp -------------------------------------------------------------------------------- /src/univalue/lib/.gitignore: -------------------------------------------------------------------------------- 1 | gen 2 | .libs 3 | -------------------------------------------------------------------------------- /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/asmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/asmap.cpp -------------------------------------------------------------------------------- /src/util/asmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/asmap.h -------------------------------------------------------------------------------- /src/util/bip32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/bip32.cpp -------------------------------------------------------------------------------- /src/util/bip32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/bip32.h -------------------------------------------------------------------------------- /src/util/bytevectorhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/bytevectorhash.h -------------------------------------------------------------------------------- /src/util/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/check.h -------------------------------------------------------------------------------- /src/util/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/error.cpp -------------------------------------------------------------------------------- /src/util/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/error.h -------------------------------------------------------------------------------- /src/util/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/fees.cpp -------------------------------------------------------------------------------- /src/util/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/fees.h -------------------------------------------------------------------------------- /src/util/golombrice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/golombrice.h -------------------------------------------------------------------------------- /src/util/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/macros.h -------------------------------------------------------------------------------- /src/util/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/memory.h -------------------------------------------------------------------------------- /src/util/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/message.cpp -------------------------------------------------------------------------------- /src/util/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/message.h -------------------------------------------------------------------------------- /src/util/moneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/moneystr.cpp -------------------------------------------------------------------------------- /src/util/moneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/moneystr.h -------------------------------------------------------------------------------- /src/util/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/rbf.cpp -------------------------------------------------------------------------------- /src/util/rbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/rbf.h -------------------------------------------------------------------------------- /src/util/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/ref.h -------------------------------------------------------------------------------- /src/util/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/settings.cpp -------------------------------------------------------------------------------- /src/util/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/settings.h -------------------------------------------------------------------------------- /src/util/spanparsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/spanparsing.cpp -------------------------------------------------------------------------------- /src/util/spanparsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/spanparsing.h -------------------------------------------------------------------------------- /src/util/strencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/strencodings.cpp -------------------------------------------------------------------------------- /src/util/strencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/strencodings.h -------------------------------------------------------------------------------- /src/util/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/string.cpp -------------------------------------------------------------------------------- /src/util/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/string.h -------------------------------------------------------------------------------- /src/util/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/system.cpp -------------------------------------------------------------------------------- /src/util/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/system.h -------------------------------------------------------------------------------- /src/util/threadnames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/threadnames.cpp -------------------------------------------------------------------------------- /src/util/threadnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/threadnames.h -------------------------------------------------------------------------------- /src/util/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/time.cpp -------------------------------------------------------------------------------- /src/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/time.h -------------------------------------------------------------------------------- /src/util/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/translation.h -------------------------------------------------------------------------------- /src/util/ui_change_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/ui_change_type.h -------------------------------------------------------------------------------- /src/util/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/url.cpp -------------------------------------------------------------------------------- /src/util/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/url.h -------------------------------------------------------------------------------- /src/util/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/util/vector.h -------------------------------------------------------------------------------- /src/validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/validation.cpp -------------------------------------------------------------------------------- /src/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/validation.h -------------------------------------------------------------------------------- /src/validationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/validationinterface.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/version.h -------------------------------------------------------------------------------- /src/versionbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/versionbits.cpp -------------------------------------------------------------------------------- /src/versionbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/versionbits.h -------------------------------------------------------------------------------- /src/versionbitsinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/versionbitsinfo.cpp -------------------------------------------------------------------------------- /src/versionbitsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/versionbitsinfo.h -------------------------------------------------------------------------------- /src/wallet/bdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/bdb.cpp -------------------------------------------------------------------------------- /src/wallet/bdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/bdb.h -------------------------------------------------------------------------------- /src/wallet/coincontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/coincontrol.h -------------------------------------------------------------------------------- /src/wallet/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/context.cpp -------------------------------------------------------------------------------- /src/wallet/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/context.h -------------------------------------------------------------------------------- /src/wallet/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/crypter.cpp -------------------------------------------------------------------------------- /src/wallet/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/crypter.h -------------------------------------------------------------------------------- /src/wallet/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/db.cpp -------------------------------------------------------------------------------- /src/wallet/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/db.h -------------------------------------------------------------------------------- /src/wallet/feebumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/feebumper.cpp -------------------------------------------------------------------------------- /src/wallet/feebumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/feebumper.h -------------------------------------------------------------------------------- /src/wallet/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/fees.cpp -------------------------------------------------------------------------------- /src/wallet/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/fees.h -------------------------------------------------------------------------------- /src/wallet/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/init.cpp -------------------------------------------------------------------------------- /src/wallet/ismine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/ismine.h -------------------------------------------------------------------------------- /src/wallet/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/load.cpp -------------------------------------------------------------------------------- /src/wallet/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/load.h -------------------------------------------------------------------------------- /src/wallet/reserve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/reserve.cpp -------------------------------------------------------------------------------- /src/wallet/reserve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/reserve.h -------------------------------------------------------------------------------- /src/wallet/rpcdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/rpcdump.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/rpcwallet.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/rpcwallet.h -------------------------------------------------------------------------------- /src/wallet/salvage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/salvage.cpp -------------------------------------------------------------------------------- /src/wallet/salvage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/salvage.h -------------------------------------------------------------------------------- /src/wallet/sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/sqlite.cpp -------------------------------------------------------------------------------- /src/wallet/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/sqlite.h -------------------------------------------------------------------------------- /src/wallet/txassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/txassembler.h -------------------------------------------------------------------------------- /src/wallet/txlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/txlist.cpp -------------------------------------------------------------------------------- /src/wallet/txlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/txlist.h -------------------------------------------------------------------------------- /src/wallet/txrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/txrecord.cpp -------------------------------------------------------------------------------- /src/wallet/txrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/txrecord.h -------------------------------------------------------------------------------- /src/wallet/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/wallet.cpp -------------------------------------------------------------------------------- /src/wallet/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/wallet.h -------------------------------------------------------------------------------- /src/wallet/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/walletdb.cpp -------------------------------------------------------------------------------- /src/wallet/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/walletdb.h -------------------------------------------------------------------------------- /src/wallet/wallettool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/wallettool.cpp -------------------------------------------------------------------------------- /src/wallet/wallettool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/wallettool.h -------------------------------------------------------------------------------- /src/wallet/walletutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/walletutil.cpp -------------------------------------------------------------------------------- /src/wallet/walletutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/wallet/walletutil.h -------------------------------------------------------------------------------- /src/walletinitinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/walletinitinterface.h -------------------------------------------------------------------------------- /src/warnings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/warnings.cpp -------------------------------------------------------------------------------- /src/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/warnings.h -------------------------------------------------------------------------------- /src/zmq/zmqrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/zmq/zmqrpc.cpp -------------------------------------------------------------------------------- /src/zmq/zmqrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/zmq/zmqrpc.h -------------------------------------------------------------------------------- /src/zmq/zmqutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/zmq/zmqutil.cpp -------------------------------------------------------------------------------- /src/zmq/zmqutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/src/zmq/zmqutil.h -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/README.md -------------------------------------------------------------------------------- /test/config.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/config.ini.in -------------------------------------------------------------------------------- /test/functional/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | cache 3 | -------------------------------------------------------------------------------- /test/functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/functional/README.md -------------------------------------------------------------------------------- /test/functional/test_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fuzz/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/fuzz/test_runner.py -------------------------------------------------------------------------------- /test/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/README.md -------------------------------------------------------------------------------- /test/lint/check-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/check-doc.py -------------------------------------------------------------------------------- /test/lint/lint-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/lint-all.sh -------------------------------------------------------------------------------- /test/lint/lint-cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/lint-cpp.sh -------------------------------------------------------------------------------- /test/lint/lint-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/lint-logs.sh -------------------------------------------------------------------------------- /test/lint/lint-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/lint-python.sh -------------------------------------------------------------------------------- /test/lint/lint-qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/lint-qt.sh -------------------------------------------------------------------------------- /test/lint/lint-shebang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/lint-shebang.sh -------------------------------------------------------------------------------- /test/lint/lint-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/lint-shell.sh -------------------------------------------------------------------------------- /test/lint/lint-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/lint/lint-tests.sh -------------------------------------------------------------------------------- /test/util/rpcauth-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhighcodestar/coin/HEAD/test/util/rpcauth-test.py --------------------------------------------------------------------------------