├── .dockerignore ├── .github ├── issue_template.md ├── pull_request_template.md └── workflows │ └── ci-master.yml ├── .gitignore ├── CONTRIBUTING.md ├── COPYING ├── Dockerfile ├── INDEXNODE.md ├── INSTALL.md ├── Jenkinsfile ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── contrib ├── .gitignore ├── README.md ├── bitcoin-cli.bash-completion ├── bitcoin-qt.pro ├── bitcoin-tx.bash-completion ├── bitcoind.bash-completion ├── debian │ ├── README.md │ ├── bitcoin-qt.desktop │ ├── bitcoin-qt.install │ ├── bitcoin-qt.lintian-overrides │ ├── bitcoin-qt.protocol │ ├── bitcoin-tx.bash-completion │ ├── bitcoin-tx.install │ ├── bitcoind.bash-completion │ ├── bitcoind.examples │ ├── bitcoind.install │ ├── bitcoind.lintian-overrides │ ├── bitcoind.manpages │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── examples │ │ └── bitcoin.conf │ ├── gbp.conf │ ├── manpages │ │ ├── bitcoin-cli.1 │ │ ├── bitcoin-qt.1 │ │ ├── bitcoin-tx.1 │ │ ├── bitcoin.conf.5 │ │ └── bitcoind.1 │ ├── patches │ │ ├── README │ │ └── series │ ├── rules │ ├── source │ │ └── format │ └── watch ├── devtools │ ├── README.md │ ├── check-doc.py │ ├── clang-format-diff.py │ ├── clang-format.py │ ├── fix-copyright-headers.py │ ├── git-subtree-check.sh │ ├── github-merge.py │ ├── optimize-pngs.py │ ├── security-check.py │ ├── split-debug.sh.in │ ├── symbol-check.py │ ├── test-security-check.py │ └── update-translations.py ├── docker │ └── builder │ │ └── Dockerfile ├── gitian-build.py ├── gitian-build.sh ├── gitian-descriptors │ ├── README.md │ ├── gitian-linux.yml │ ├── gitian-osx-signer.yml │ ├── gitian-osx.yml │ ├── gitian-win-signer.yml │ └── gitian-win.yml ├── gitian-keys │ ├── achow101-key.pgp │ ├── aschildbach-key.pgp │ ├── bluematt-key.pgp │ ├── btcdrak-key.pgp │ ├── cdecker-key.pgp │ ├── centaur1-key.pgp │ ├── cfields-key.pgp │ ├── devrandom-key.pgp │ ├── erkmos.pgp │ ├── fanquake-key.pgp │ ├── gavinandresen-key.pgp │ ├── jl2012-key.pgp │ ├── jonasschnelli-key.pgp │ ├── laanwj-key.pgp │ ├── luke-jr-key.pgp │ ├── marcofalke-key.pgp │ ├── michagogo-key.pgp │ ├── petertodd-key.pgp │ ├── prab-key.pgp │ ├── sipa-key.pgp │ ├── tcatm-key.pgp │ └── wtogami-key.pgp ├── init │ ├── README.md │ ├── bitcoind.conf │ ├── bitcoind.init │ ├── bitcoind.openrc │ ├── bitcoind.openrcconf │ ├── bitcoind.service │ └── org.bitcoin.bitcoind.plist ├── linearize │ ├── README.md │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── LICENSE │ ├── README.md │ ├── background.svg │ ├── custom_dsstore.py │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── extract-osx-sdk.sh │ ├── fancy.plist │ └── macdeployqtplus ├── masternode_setup.py ├── qos │ ├── README.md │ └── tc.sh ├── qt_translations.py ├── rpm │ ├── README.md │ ├── bitcoin.fc │ ├── bitcoin.if │ ├── bitcoin.spec │ └── bitcoin.te ├── seeds │ ├── README.md │ ├── convert_ipv4hex.py │ ├── generate-seeds.py │ ├── makeseeds.py │ ├── nodes_main.txt │ └── nodes_test.txt ├── spendfrom │ ├── README.md │ ├── setup.py │ └── spendfrom.py ├── testgen │ ├── README.md │ ├── base58.py │ └── gen_base58_test_vectors.py ├── tidy_datadir.sh ├── verify-commits │ ├── README.md │ ├── allow-revsig-commits │ ├── gpg.sh │ ├── pre-push-hook.sh │ ├── trusted-git-root │ ├── trusted-keys │ └── verify-commits.sh ├── 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 ├── config.guess ├── config.site.in ├── config.sub ├── description.md ├── funcs.mk ├── hosts │ ├── darwin.mk │ ├── default.mk │ ├── linux.mk │ └── mingw32.mk ├── packages.md ├── packages │ ├── bdb.mk │ ├── boost.mk │ ├── dbus.mk │ ├── expat.mk │ ├── fontconfig.mk │ ├── freetype.mk │ ├── libICE.mk │ ├── libSM.mk │ ├── libX11.mk │ ├── libXau.mk │ ├── libXext.mk │ ├── libevent.mk │ ├── libxcb.mk │ ├── miniupnpc.mk │ ├── minizip.mk │ ├── native_biplist.mk │ ├── native_ccache.mk │ ├── native_cctools.mk │ ├── native_cdrkit.mk │ ├── native_comparisontool.mk │ ├── native_ds_store.mk │ ├── native_libdmg-hfsplus.mk │ ├── native_mac_alias.mk │ ├── native_protobuf.mk │ ├── openssl.mk │ ├── packages.mk │ ├── protobuf.mk │ ├── qrencode.mk │ ├── qt.mk │ ├── qt46.mk │ ├── xcb_proto.mk │ ├── xextproto.mk │ ├── xproto.mk │ ├── xtrans.mk │ ├── zeromq.mk │ └── zlib.mk └── patches │ ├── boost │ └── fix-win-wake-from-sleep.patch │ ├── libevent │ └── reuseaddr.patch │ ├── native_biplist │ └── sorted_list.patch │ ├── native_cdrkit │ └── cdrkit-deterministic.patch │ ├── native_mac_alias │ └── python3.patch │ ├── qt │ ├── fix-xcb-include-order.patch │ ├── fix_qt_pkgconfig.patch │ ├── mac-qmake.conf │ ├── mingw-uuidof.patch │ └── pidlist_absolute.patch │ ├── qt46 │ └── stlfix.patch │ └── zeromq │ ├── 0001-fix-build-with-older-mingw64.patch │ └── 0002-disable-pthread_set_name_np.patch ├── doc ├── Doxyfile ├── README.md ├── README_osx.md ├── README_windows.txt ├── REST-interface.md ├── assets-attribution.md ├── benchmarking.md ├── bips.md ├── bitcoin_logo_doxygen.png ├── build-macos.md ├── build-openbsd.md ├── build-unix.md ├── build-windows.md ├── build_windows_wsl.md ├── client-api.md ├── debug-vs2017.txt ├── developer-notes.md ├── dnsseed-policy.md ├── files.md ├── gitian-building.md ├── gitian-building │ ├── all_files_in_one_partition.png │ ├── create_new_vm.png │ ├── create_vm_file_location_size.png │ ├── create_vm_hard_disk.png │ ├── create_vm_hard_disk_file_type.png │ ├── create_vm_memsize.png │ ├── create_vm_storage_physical_hard_disk.png │ ├── debian_install_10_configure_clock.png │ ├── debian_install_11_partition_disks.png │ ├── debian_install_12_choose_disk.png │ ├── debian_install_14_finish.png │ ├── debian_install_15_write_changes.png │ ├── debian_install_16_choose_a_mirror.png │ ├── debian_install_18_proxy_settings.png │ ├── debian_install_19_software_selection.png │ ├── debian_install_1_boot_menu.png │ ├── debian_install_20_install_grub.png │ ├── debian_install_21_install_grub_bootloader.png │ ├── debian_install_22_finish_installation.png │ ├── debian_install_2_select_a_language.png │ ├── debian_install_3_select_location.png │ ├── debian_install_4_configure_keyboard.png │ ├── debian_install_5_configure_the_network.png │ ├── debian_install_6_domain_name.png │ ├── debian_install_6a_set_up_root_password.png │ ├── debian_install_7_set_up_user_fullname.png │ ├── debian_install_8_set_up_username.png │ ├── debian_install_9_user_password.png │ ├── debian_root_login.png │ ├── network_settings.png │ ├── port_forwarding_rules.png │ └── select_startup_disk.png ├── init.md ├── multiwallet-qt.md ├── reduce-traffic.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.13.0.md │ ├── release-notes-0.13.1.md │ ├── release-notes-0.13.10.2.md │ ├── release-notes-0.13.10.3.md │ ├── release-notes-0.13.2.md │ ├── release-notes-0.3.12.md │ ├── release-notes-0.3.13.md │ ├── release-notes-0.3.14.md │ ├── release-notes-0.3.15.md │ ├── release-notes-0.3.16.md │ ├── release-notes-0.3.17.md │ ├── release-notes-0.3.18.md │ ├── release-notes-0.3.19.md │ ├── release-notes-0.3.20.1.md │ ├── release-notes-0.3.20.2.md │ ├── release-notes-0.3.20.md │ ├── release-notes-0.3.21.md │ ├── release-notes-0.3.22.md │ ├── release-notes-0.3.23.md │ ├── release-notes-0.3.24.md │ ├── release-notes-0.4.0.md │ ├── release-notes-0.4.1.md │ ├── release-notes-0.4.2.md │ ├── release-notes-0.4.3.md │ ├── release-notes-0.4.4.md │ ├── release-notes-0.4.5.md │ ├── release-notes-0.4.6.md │ ├── release-notes-0.5.0.md │ ├── release-notes-0.5.1.md │ ├── release-notes-0.5.2.md │ ├── release-notes-0.5.3.md │ ├── release-notes-0.5.4.md │ ├── release-notes-0.5.5.md │ ├── release-notes-0.6.0.md │ ├── release-notes-0.6.1.md │ ├── release-notes-0.6.2.md │ ├── release-notes-0.6.3.md │ ├── release-notes-0.7.0.md │ ├── release-notes-0.7.1.md │ ├── release-notes-0.7.2.md │ ├── release-notes-0.8.0.md │ ├── release-notes-0.8.1.md │ ├── release-notes-0.8.2.md │ ├── release-notes-0.8.3.md │ ├── release-notes-0.8.4.md │ ├── release-notes-0.8.5.md │ ├── release-notes-0.8.6.md │ ├── release-notes-0.9.0.md │ ├── release-notes-0.9.1.md │ ├── release-notes-0.9.2.1.md │ ├── release-notes-0.9.2.md │ ├── release-notes-0.9.3.md │ ├── release-notes-0.9.4.md │ └── release-notes-0.9.5.md ├── release-process.md ├── shared-libraries.md ├── tor.md ├── translation_process.md ├── translation_strings_policy.md ├── travis-ci.txt ├── unit-tests.md └── zmq.md ├── lgtm.yml ├── libbitcoinconsensus.pc.in ├── qa ├── README.md ├── pull-tester │ ├── rpc-tests.py │ ├── run-bitcoind-for-test.sh.in │ └── tests_config.py.in └── rpc-tests │ ├── .gitignore │ ├── README.md │ ├── abandonconflict.py │ ├── bip65-cltv-p2p.py │ ├── bip65-cltv.py │ ├── bip68-112-113-p2p.py │ ├── bip68-sequence.py │ ├── bip9-softforks.py │ ├── bipdersig-p2p.py │ ├── bipdersig.py │ ├── blockchain.py │ ├── create_cache.py │ ├── decodescript.py │ ├── disablewallet.py │ ├── elysium_create_denomination.py │ ├── elysium_issuance_fixed.py │ ├── elysium_issuance_managed.py │ ├── elysium_property_creation_fee.py │ ├── elysium_sendmint.py │ ├── elysium_sendmint_wallet_encryption.py │ ├── elysium_sendspend.py │ ├── elysium_sendspend_wallet_encryption.py │ ├── elysium_sigma_reindex.py │ ├── elysium_sigma_reorg.py │ ├── elysium_walletrecovery.py │ ├── forknotify.py │ ├── fundrawtransaction.py │ ├── getblocktemplate_longpoll.py │ ├── getblocktemplate_proposals.py │ ├── getchaintips.py │ ├── hdmint_mempool_zap.py │ ├── httpbasics.py │ ├── importprunedfunds.py │ ├── invalidateblock.py │ ├── invalidblockrequest.py │ ├── invalidtxrequest.py │ ├── keypool.py │ ├── listtransactions.py │ ├── maxblocksinflight.py │ ├── maxuploadtarget.py │ ├── mempool_doublesend_oneblock.py │ ├── mempool_limit.py │ ├── mempool_packages.py │ ├── mempool_reorg.py │ ├── mempool_resurrect_test.py │ ├── mempool_spendcoinbase.py │ ├── merkle_blocks.py │ ├── multi_rpc.py │ ├── nodehandling.py │ ├── nulldummy.py │ ├── p2p-acceptblock.py │ ├── p2p-compactblocks.py │ ├── p2p-dandelion.py │ ├── p2p-feefilter.py │ ├── p2p-fullblocktest.py │ ├── p2p-mempool.py │ ├── p2p-segwit.py │ ├── p2p-versionbits-warning.py │ ├── prioritise_transaction.py │ ├── proxy_test.py │ ├── pruning.py │ ├── rawtransactions.py │ ├── receivedby.py │ ├── reindex.py │ ├── replace-by-fee.py │ ├── rest.py │ ├── rpcbind_test.py │ ├── segwit.py │ ├── sendheaders.py │ ├── sigma_blocklimit.py │ ├── sigma_listsigmamints_validation.py │ ├── sigma_listsigmapubcoins_validation.py │ ├── sigma_listsigmaspends_validation.py │ ├── sigma_listunspentmints_sigma_validation.py │ ├── sigma_meetspend.py │ ├── sigma_mint_validation.py │ ├── sigma_mintspend.py │ ├── sigma_nonhd_wallet.py │ ├── sigma_remint.py │ ├── sigma_remint_lockedwallet.py │ ├── sigma_remint_validation.py │ ├── sigma_resetsigmamint_validation.py │ ├── sigma_setsigmamintstatus_validation.py │ ├── sigma_spend_extra_validation.py │ ├── sigma_spend_gettransaction.py │ ├── sigma_spend_validation.py │ ├── sigma_zapwalletmints.py │ ├── sigma_zapwalletmints_unconf_trans.py │ ├── signmessages.py │ ├── signrawtransactions.py │ ├── smartfees.py │ ├── test_framework │ ├── __init__.py │ ├── address.py │ ├── authproxy.py │ ├── bignum.py │ ├── blockstore.py │ ├── blocktools.py │ ├── comptool.py │ ├── coverage.py │ ├── key.py │ ├── mininode.py │ ├── netutil.py │ ├── script.py │ ├── siphash.py │ ├── socks5.py │ ├── test_framework.py │ ├── test_helper.py │ └── util.py │ ├── transations_verification_after_restart.py │ ├── txn_clone.py │ ├── txn_doublespend.py │ ├── wallet-dump.py │ ├── wallet-hd.py │ ├── wallet.py │ ├── wallet_dumpnonhd.py │ ├── wallet_dumpsigma.py │ ├── wallet_dumpzerocoin.py │ ├── walletbackup.py │ ├── zapwallettxes.py │ └── zmq_test.py ├── share ├── certs │ ├── BitcoinFoundation_Apple_Cert.pem │ ├── BitcoinFoundation_Comodo_Cert.pem │ └── PrivateKeyNotes.md ├── genbuild.sh ├── pixmaps │ ├── bitcoin.ico │ ├── bitcoin.png │ ├── 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 │ └── protobuf.pri ├── rpcuser │ ├── README.md │ └── rpcuser.py └── setup.nsi.in ├── snapcraft.yaml ├── src ├── .clang-format ├── Makefile.am ├── Makefile.bench.include ├── Makefile.clientapi.include ├── Makefile.clientapitest.include ├── Makefile.elysium.include ├── Makefile.elysiumtest.include ├── Makefile.leveldb.include ├── Makefile.qt.include ├── Makefile.qttest.include ├── Makefile.test.include ├── activeindexnode.cpp ├── activeindexnode.h ├── addressindex.h ├── addresstype.h ├── addrman.cpp ├── addrman.h ├── amount.cpp ├── amount.h ├── arith_uint256.cpp ├── arith_uint256.h ├── auxpow.cpp ├── auxpow.h ├── base58.cpp ├── base58.h ├── bench │ ├── .gitignore │ ├── Examples.cpp │ ├── base58.cpp │ ├── bench.cpp │ ├── bench.h │ ├── bench_bitcoin.cpp │ ├── crypto_hash.cpp │ └── rollingbloom.cpp ├── bitcoin-cli-res.rc ├── bitcoin-cli.cpp ├── bitcoin-tx-res.rc ├── bitcoin-tx.cpp ├── bitcoind-res.rc ├── bitcoind.cpp ├── blacklist │ ├── blacklist.cpp │ └── blacklist.h ├── blockencodings.cpp ├── blockencodings.h ├── bloom.cpp ├── bloom.h ├── chain.cpp ├── chain.h ├── chainparams.cpp ├── chainparams.h ├── chainparamsbase.cpp ├── chainparamsbase.h ├── chainparamsseeds.h ├── checkpoints.cpp ├── checkpoints.h ├── checkqueue.h ├── client-api │ ├── README.md │ ├── blockchain.cpp │ ├── examples │ │ ├── apistatus.py │ │ ├── req_example_auth.py │ │ └── sub_example.py │ ├── indexnode.cpp │ ├── misc.cpp │ ├── protocol.cpp │ ├── protocol.h │ ├── register.h │ ├── send.cpp │ ├── send.h │ ├── server.cpp │ ├── server.h │ ├── settings.cpp │ ├── settings.h │ ├── sigma.cpp │ ├── sigma.h │ ├── wallet.cpp │ ├── wallet.h │ └── zmqconfig.h ├── clientversion.cpp ├── clientversion.h ├── coin_containers.cpp ├── coin_containers.h ├── coincontrol.h ├── coins.cpp ├── coins.h ├── compat.h ├── compat │ ├── byteswap.h │ ├── endian.h │ ├── glibc_compat.cpp │ ├── glibc_sanity.cpp │ ├── glibcxx_sanity.cpp │ ├── sanity.h │ └── strnlen.cpp ├── compressor.cpp ├── compressor.h ├── config │ └── .empty ├── consensus │ ├── consensus.h │ ├── merkle.cpp │ ├── merkle.h │ ├── params.h │ └── validation.h ├── core_io.h ├── core_memusage.h ├── core_read.cpp ├── core_write.cpp ├── crypto │ ├── aes.cpp │ ├── aes.h │ ├── chacha20.cpp │ ├── chacha20.h │ ├── common.h │ ├── ctaes │ │ ├── COPYING │ │ ├── README.md │ │ ├── bench.c │ │ ├── ctaes.c │ │ ├── ctaes.h │ │ └── test.c │ ├── hmac_sha256.cpp │ ├── hmac_sha256.h │ ├── hmac_sha512.cpp │ ├── hmac_sha512.h │ ├── ripemd160.cpp │ ├── ripemd160.h │ ├── scrypt-sse2.cpp │ ├── scrypt.cpp │ ├── scrypt.h │ ├── sha1.cpp │ ├── sha1.h │ ├── sha256.cpp │ ├── sha256.h │ ├── sha512.cpp │ ├── sha512.h │ └── x16Rv2 │ │ ├── Lyra2RE.c │ │ ├── Lyra2RE.h │ │ ├── aes_helper.c │ │ ├── blake.c │ │ ├── bmw.c │ │ ├── cubehash.c │ │ ├── echo.c │ │ ├── extra.c │ │ ├── extra.h │ │ ├── fugue.c │ │ ├── gost_streebog.c │ │ ├── gost_streebog.h │ │ ├── groestl.c │ │ ├── hamsi.c │ │ ├── hamsi_helper.c │ │ ├── hash_algos.h │ │ ├── haval.c │ │ ├── haval_helper.c │ │ ├── jh.c │ │ ├── keccak.c │ │ ├── luffa.c │ │ ├── lyra2.cpp │ │ ├── lyra2.h │ │ ├── md_helper.c │ │ ├── sha2.c │ │ ├── shabal.c │ │ ├── shavite.c │ │ ├── simd.c │ │ ├── skein.c │ │ ├── sph_blake.h │ │ ├── sph_bmw.h │ │ ├── sph_cubehash.h │ │ ├── sph_echo.h │ │ ├── sph_fugue.h │ │ ├── sph_groestl.h │ │ ├── sph_hamsi.h │ │ ├── sph_haval.h │ │ ├── sph_jh.h │ │ ├── sph_keccak.h │ │ ├── sph_luffa.h │ │ ├── sph_md_helper.c │ │ ├── sph_sha2.c │ │ ├── sph_sha2.h │ │ ├── sph_sha2big.c │ │ ├── sph_shabal.h │ │ ├── sph_shavite.h │ │ ├── sph_simd.h │ │ ├── sph_skein.h │ │ ├── sph_tiger.h │ │ ├── sph_types.h │ │ ├── sph_whirlpool.h │ │ ├── sponge.cpp │ │ ├── sponge.h │ │ ├── tiger.cpp │ │ └── whirlpool.c ├── darksend-relay.cpp ├── darksend-relay.h ├── darksend.cpp ├── darksend.h ├── dbwrapper.cpp ├── dbwrapper.h ├── definition.h ├── elysium │ ├── COPYING │ ├── activation.cpp │ ├── activation.h │ ├── consensushash.cpp │ ├── consensushash.h │ ├── convert.cpp │ ├── convert.h │ ├── createpayload.cpp │ ├── createpayload.h │ ├── createtx.cpp │ ├── createtx.h │ ├── dex.cpp │ ├── dex.h │ ├── doc │ │ ├── configuration.md │ │ ├── release-notes.md │ │ ├── release-notes │ │ │ ├── mastercore-0.0.9-release-notes.md │ │ │ ├── mastercore-0.0.9.1-release-notes.md │ │ │ ├── mastercore-0.0.9.2-release-notes.md │ │ │ ├── omnicore-0.0.10-release-notes.md │ │ │ ├── omnicore-0.0.11.0-release-notes.md │ │ │ ├── omnicore-0.0.11.1-release-notes.md │ │ │ ├── omnicore-0.0.11.2-release-notes.md │ │ │ ├── omnicore-0.0.12-release-notes.md │ │ │ └── omnicore-0.2.0-release-notes.md │ │ └── rpc-api.md │ ├── ecdsa_context.cpp │ ├── ecdsa_context.h │ ├── ecdsa_signature.cpp │ ├── ecdsa_signature.h │ ├── elysium.cpp │ ├── elysium.h │ ├── errors.h │ ├── fees.cpp │ ├── fees.h │ ├── fetchwallettx.cpp │ ├── fetchwallettx.h │ ├── log.cpp │ ├── log.h │ ├── mdex.cpp │ ├── mdex.h │ ├── notifications.cpp │ ├── notifications.h │ ├── packetencoder.cpp │ ├── packetencoder.h │ ├── parse_string.cpp │ ├── parse_string.h │ ├── pending.cpp │ ├── pending.h │ ├── persistence.cpp │ ├── persistence.h │ ├── property.cpp │ ├── property.h │ ├── rpc.cpp │ ├── rpc.h │ ├── rpcpayload.cpp │ ├── rpcpayload.h │ ├── rpcrawtx.cpp │ ├── rpcrawtx.h │ ├── rpcrequirements.cpp │ ├── rpcrequirements.h │ ├── rpctx.cpp │ ├── rpctx.h │ ├── rpctxobject.cpp │ ├── rpctxobject.h │ ├── rpcvalues.cpp │ ├── rpcvalues.h │ ├── rules.cpp │ ├── rules.h │ ├── script.cpp │ ├── script.h │ ├── sigma.cpp │ ├── sigma.h │ ├── sigmadb.cpp │ ├── sigmadb.h │ ├── sigmaprimitives.cpp │ ├── sigmaprimitives.h │ ├── sigmawallet.cpp │ ├── sigmawallet.h │ ├── sigmawalletv0.cpp │ ├── sigmawalletv0.h │ ├── sigmawalletv1.cpp │ ├── sigmawalletv1.h │ ├── signaturebuilder.cpp │ ├── signaturebuilder.h │ ├── sp.cpp │ ├── sp.h │ ├── sto.cpp │ ├── sto.h │ ├── tally.cpp │ ├── tally.h │ ├── test │ │ ├── alert_tests.cpp │ │ ├── build_tx_tests.cpp │ │ ├── checkpoint_tests.cpp │ │ ├── create_payload_tests.cpp │ │ ├── create_tx_tests.cpp │ │ ├── crowdsale_participation_tests.cpp │ │ ├── dex_purchase_tests.cpp │ │ ├── ecdsa_signature_tests.cpp │ │ ├── elysium_handler_tx.cpp │ │ ├── elysium_tests.cpp │ │ ├── encoding_b_tests.cpp │ │ ├── encoding_c_tests.cpp │ │ ├── lock_tests.cpp │ │ ├── marker_tests.cpp │ │ ├── output_restriction_tests.cpp │ │ ├── packetencoder_tests.cpp │ │ ├── parsing_b_tests.cpp │ │ ├── parsing_c_tests.cpp │ │ ├── property_tests.cpp │ │ ├── rounduint64_tests.cpp │ │ ├── rules_txs_tests.cpp │ │ ├── script_extraction_tests.cpp │ │ ├── script_solver_tests.cpp │ │ ├── sender_bycontribution_tests.cpp │ │ ├── sender_firstin_tests.cpp │ │ ├── sigma_tests.cpp │ │ ├── sigmadb_tests.cpp │ │ ├── sigmaprimitives_tests.cpp │ │ ├── sigmawallet_tests.cpp │ │ ├── sigmawalletv0_tests.cpp │ │ ├── sigmawalletv1_tests.cpp │ │ ├── signaturebuilder_sigmav1_tests.cpp │ │ ├── sp_tests.cpp │ │ ├── strtoint64_tests.cpp │ │ ├── swapbyteorder_tests.cpp │ │ ├── tally_tests.cpp │ │ ├── test_clientexpiry.sh │ │ ├── test_deactivation.sh │ │ ├── test_fees.sh │ │ ├── test_freeze.sh │ │ ├── test_metadexphase3.sh │ │ ├── test_metadexprices.sh │ │ ├── test_stov1.sh │ │ ├── uint256_extensions_tests.cpp │ │ ├── utils_tx.cpp │ │ ├── utils_tx.h │ │ ├── wallet_tests.cpp │ │ └── walletmodels_tests.cpp │ ├── tx.cpp │ ├── tx.h │ ├── txprocessor.cpp │ ├── txprocessor.h │ ├── uint256_extensions.h │ ├── utils.cpp │ ├── utils.h │ ├── utilsbitcoin.cpp │ ├── utilsbitcoin.h │ ├── version.cpp │ ├── version.h │ ├── wallet.cpp │ ├── wallet.h │ ├── walletcache.cpp │ ├── walletcache.h │ ├── walletmodels.cpp │ ├── walletmodels.h │ ├── wallettxs.cpp │ └── wallettxs.h ├── fixed.h ├── flat-database.h ├── fs.cpp ├── fs.h ├── hash.cpp ├── hash.h ├── hdmint │ ├── hdmint.cpp │ ├── hdmint.h │ ├── mintpool.cpp │ ├── mintpool.h │ ├── tracker.cpp │ ├── tracker.h │ ├── wallet.cpp │ └── wallet.h ├── httprpc.cpp ├── httprpc.h ├── httpserver.cpp ├── httpserver.h ├── indexnode-payments.cpp ├── indexnode-payments.h ├── indexnode-sync.cpp ├── indexnode-sync.h ├── indexnode.cpp ├── indexnode.h ├── indexnodeconfig.cpp ├── indexnodeconfig.h ├── indexnodeman.cpp ├── indexnodeman.h ├── indirectmap.h ├── init.cpp ├── init.h ├── instantx.cpp ├── instantx.h ├── key.cpp ├── key.h ├── keystore.cpp ├── keystore.h ├── leveldb │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── NEWS │ ├── README │ ├── README.md │ ├── TODO │ ├── WINDOWS.md │ ├── build_detect_platform │ ├── db │ │ ├── autocompact_test.cc │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── c_test.c │ │ ├── corruption_test.cc │ │ ├── db_bench.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 │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── filename_test.cc │ │ ├── leveldb_main.cc │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_test.cc │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── 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 │ │ ├── bench │ │ │ ├── db_bench_sqlite3.cc │ │ │ └── db_bench_tree_db.cc │ │ ├── benchmark.html │ │ ├── doc.css │ │ ├── impl.html │ │ ├── index.html │ │ ├── log_format.txt │ │ └── table_format.txt │ ├── helpers │ │ └── memenv │ │ │ ├── memenv.cc │ │ │ ├── memenv.h │ │ │ └── memenv_test.cc │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.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 │ ├── port │ │ ├── README │ │ ├── atomic_pointer.h │ │ ├── port.h │ │ ├── port_example.h │ │ ├── port_posix.cc │ │ ├── port_posix.h │ │ ├── port_win.cc │ │ ├── port_win.h │ │ ├── thread_annotations.h │ │ └── win │ │ │ └── stdint.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_test.cc │ │ ├── env_win.cc │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── hash_test.cc │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── mutexlock.h │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.cc │ │ └── testutil.h ├── libexecstream │ ├── README │ ├── doc │ │ ├── index.html │ │ ├── libexecstream.css │ │ ├── license.html │ │ ├── news.html │ │ └── reference.html │ ├── exec-stream.cpp │ ├── exec-stream.h │ ├── posix │ │ ├── exec-stream-helpers.cpp │ │ ├── exec-stream-helpers.h │ │ └── exec-stream-impl.cpp │ ├── test │ │ ├── Makefile.gcc │ │ ├── Makefile.msvc │ │ └── exec-stream-test.cpp │ └── win │ │ ├── exec-stream-helpers.cpp │ │ ├── exec-stream-helpers.h │ │ └── exec-stream-impl.cpp ├── libzerocoin │ ├── .gitignore │ ├── Accumulator.cpp │ ├── Accumulator.h │ ├── AccumulatorProofOfKnowledge.cpp │ ├── AccumulatorProofOfKnowledge.h │ ├── Benchmark.cpp │ ├── Build-gcc │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── subdir.mk │ ├── CMake │ │ ├── Modules │ │ │ └── BoostConfig.cmake │ │ └── cmake_uninstall.cmake.in │ ├── Coin.cpp │ ├── Coin.h │ ├── CoinSpend.cpp │ ├── CoinSpend.h │ ├── Commitment.cpp │ ├── Commitment.h │ ├── LICENSE │ ├── ParallelTasks.cpp │ ├── ParallelTasks.h │ ├── ParamGeneration.cpp │ ├── ParamGeneration.h │ ├── Params.cpp │ ├── Params.h │ ├── README.cmake │ ├── README.md │ ├── SerialNumberSignatureOfKnowledge.cpp │ ├── SerialNumberSignatureOfKnowledge.h │ ├── SpendMetaData.cpp │ ├── SpendMetaData.h │ ├── Tests.cpp │ ├── Tutorial.cpp │ ├── Zerocoin.h │ ├── bitcoin_bignum │ │ ├── allocators.h │ │ ├── bignum.h │ │ ├── compat.h │ │ ├── netbase.h │ │ └── serialize.h │ ├── documentation │ │ ├── Doxyfile │ │ └── manual │ │ │ ├── intro.tex │ │ │ ├── manual.pdf │ │ │ ├── manual.tex │ │ │ └── using.tex │ ├── paramgen.cpp │ └── zerocoin.pc.in ├── limitedmap.h ├── main.cpp ├── main.h ├── mbstring.cpp ├── mbstring.h ├── memusage.h ├── merkleblock.cpp ├── merkleblock.h ├── miner.cpp ├── miner.h ├── net.cpp ├── net.h ├── netbase.cpp ├── netbase.h ├── netfulfilledman.cpp ├── netfulfilledman.h ├── noui.cpp ├── noui.h ├── obj-test │ └── .gitignore ├── obj │ └── .gitignore ├── policy │ ├── fees.cpp │ ├── fees.h │ ├── policy.cpp │ ├── policy.h │ ├── rbf.cpp │ └── rbf.h ├── pos.cpp ├── pos.h ├── pow.cpp ├── pow.h ├── prevector.h ├── primitives │ ├── block.cpp │ ├── block.h │ ├── transaction.cpp │ ├── transaction.h │ ├── zerocoin.cpp │ └── zerocoin.h ├── protocol.cpp ├── protocol.h ├── pubkey.cpp ├── pubkey.h ├── qt │ ├── addressbookpage.cpp │ ├── addressbookpage.h │ ├── addresstablemodel.cpp │ ├── addresstablemodel.h │ ├── askpassphrasedialog.cpp │ ├── askpassphrasedialog.h │ ├── bantablemodel.cpp │ ├── bantablemodel.h │ ├── bitcoin.cpp │ ├── 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 │ ├── csvmodelwriter.cpp │ ├── csvmodelwriter.h │ ├── editaddressdialog.cpp │ ├── editaddressdialog.h │ ├── elyassetsdialog.cpp │ ├── elyassetsdialog.h │ ├── elysium_qtutils.cpp │ ├── elysium_qtutils.h │ ├── forms │ │ ├── addressbookpage.ui │ │ ├── askpassphrasedialog.ui │ │ ├── blanksigmadialog.ui │ │ ├── coincontroldialog.ui │ │ ├── debugwindow.ui │ │ ├── editaddressdialog.ui │ │ ├── elyassetsdialog.ui │ │ ├── helpmessagedialog.ui │ │ ├── indexnodelist.ui │ │ ├── intro.ui │ │ ├── lookupaddressdialog.ui │ │ ├── lookupspdialog.ui │ │ ├── lookuptxdialog.ui │ │ ├── manualmintdialog.ui │ │ ├── metadexcanceldialog.ui │ │ ├── metadexdialog.ui │ │ ├── notifymnemonic.ui │ │ ├── openuridialog.ui │ │ ├── optionsdialog.ui │ │ ├── overviewpage.h │ │ ├── overviewpage.ui │ │ ├── receivecoinsdialog.ui │ │ ├── receiverequestdialog.ui │ │ ├── recover.ui │ │ ├── sendcoinsdialog.ui │ │ ├── sendcoinsentry.ui │ │ ├── sendmpdialog.ui │ │ ├── sigmacoincontroldialog.ui │ │ ├── sigmadialog.ui │ │ ├── signverifymessagedialog.ui │ │ ├── tradehistorydialog.ui │ │ ├── transactiondescdialog.ui │ │ ├── txhistorydialog.ui │ │ ├── zc2sigmapage.ui │ │ └── zerocoinpage.ui │ ├── guiconstants.h │ ├── guiutil.cpp │ ├── guiutil.h │ ├── hybridui │ │ ├── navigationbar.cpp │ │ ├── navigationbar.h │ │ ├── styleSheet.cpp │ │ └── styleSheet.h │ ├── indexnodelist.cpp │ ├── indexnodelist.h │ ├── intro.cpp │ ├── intro.h │ ├── locale │ │ ├── bitcoin_af.ts │ │ ├── bitcoin_af_ZA.ts │ │ ├── bitcoin_ar.ts │ │ ├── bitcoin_be_BY.ts │ │ ├── bitcoin_bg.ts │ │ ├── bitcoin_bg_BG.ts │ │ ├── bitcoin_ca.ts │ │ ├── bitcoin_ca@valencia.ts │ │ ├── bitcoin_ca_ES.ts │ │ ├── bitcoin_cs.ts │ │ ├── bitcoin_cs_CZ.ts │ │ ├── bitcoin_cy.ts │ │ ├── bitcoin_da.ts │ │ ├── bitcoin_de.ts │ │ ├── bitcoin_el.ts │ │ ├── bitcoin_el_GR.ts │ │ ├── bitcoin_en.ts │ │ ├── bitcoin_en_GB.ts │ │ ├── bitcoin_eo.ts │ │ ├── bitcoin_es.ts │ │ ├── bitcoin_es_AR.ts │ │ ├── bitcoin_es_CL.ts │ │ ├── bitcoin_es_CO.ts │ │ ├── bitcoin_es_DO.ts │ │ ├── bitcoin_es_ES.ts │ │ ├── bitcoin_es_MX.ts │ │ ├── bitcoin_es_UY.ts │ │ ├── bitcoin_es_VE.ts │ │ ├── bitcoin_et.ts │ │ ├── bitcoin_eu_ES.ts │ │ ├── bitcoin_fa.ts │ │ ├── bitcoin_fa_IR.ts │ │ ├── bitcoin_fi.ts │ │ ├── bitcoin_fr.ts │ │ ├── bitcoin_fr_CA.ts │ │ ├── bitcoin_fr_FR.ts │ │ ├── bitcoin_gl.ts │ │ ├── bitcoin_he.ts │ │ ├── bitcoin_hi_IN.ts │ │ ├── bitcoin_hr.ts │ │ ├── bitcoin_hu.ts │ │ ├── bitcoin_id_ID.ts │ │ ├── bitcoin_it.ts │ │ ├── bitcoin_it_IT.ts │ │ ├── bitcoin_ja.ts │ │ ├── bitcoin_ka.ts │ │ ├── bitcoin_kk_KZ.ts │ │ ├── bitcoin_ko_KR.ts │ │ ├── bitcoin_ku_IQ.ts │ │ ├── bitcoin_ky.ts │ │ ├── bitcoin_la.ts │ │ ├── bitcoin_lt.ts │ │ ├── bitcoin_lv_LV.ts │ │ ├── bitcoin_mk_MK.ts │ │ ├── bitcoin_mn.ts │ │ ├── bitcoin_ms_MY.ts │ │ ├── bitcoin_nb.ts │ │ ├── bitcoin_ne.ts │ │ ├── bitcoin_nl.ts │ │ ├── bitcoin_pam.ts │ │ ├── bitcoin_pl.ts │ │ ├── bitcoin_pt_BR.ts │ │ ├── bitcoin_pt_PT.ts │ │ ├── bitcoin_ro.ts │ │ ├── bitcoin_ro_RO.ts │ │ ├── bitcoin_ru.ts │ │ ├── bitcoin_ru_RU.ts │ │ ├── bitcoin_sk.ts │ │ ├── bitcoin_sl_SI.ts │ │ ├── bitcoin_sq.ts │ │ ├── bitcoin_sr.ts │ │ ├── bitcoin_sr@latin.ts │ │ ├── bitcoin_sv.ts │ │ ├── bitcoin_ta.ts │ │ ├── bitcoin_th_TH.ts │ │ ├── bitcoin_tr.ts │ │ ├── bitcoin_tr_TR.ts │ │ ├── bitcoin_uk.ts │ │ ├── bitcoin_ur_PK.ts │ │ ├── bitcoin_uz@Cyrl.ts │ │ ├── bitcoin_vi.ts │ │ ├── bitcoin_vi_VN.ts │ │ ├── bitcoin_zh.ts │ │ ├── bitcoin_zh_CN.ts │ │ ├── bitcoin_zh_HK.ts │ │ └── bitcoin_zh_TW.ts │ ├── lookupaddressdialog.cpp │ ├── lookupaddressdialog.h │ ├── lookupspdialog.cpp │ ├── lookupspdialog.h │ ├── lookuptxdialog.cpp │ ├── lookuptxdialog.h │ ├── macdockiconhandler.h │ ├── macdockiconhandler.mm │ ├── macnotificationhandler.h │ ├── macnotificationhandler.mm │ ├── manualmintdialog.cpp │ ├── manualmintdialog.h │ ├── metadexcanceldialog.cpp │ ├── metadexcanceldialog.h │ ├── metadexdialog.cpp │ ├── metadexdialog.h │ ├── networkstyle.cpp │ ├── networkstyle.h │ ├── notificator.cpp │ ├── notificator.h │ ├── notifymnemonic.cpp │ ├── notifymnemonic.h │ ├── openuridialog.cpp │ ├── openuridialog.h │ ├── optionsdialog.cpp │ ├── optionsdialog.h │ ├── optionsmodel.cpp │ ├── optionsmodel.h │ ├── overviewpage.cpp │ ├── overviewpage.h │ ├── paymentrequest.proto │ ├── paymentrequestplus.cpp │ ├── paymentrequestplus.h │ ├── paymentserver.cpp │ ├── paymentserver.h │ ├── peertablemodel.cpp │ ├── peertablemodel.h │ ├── platformstyle.cpp │ ├── platformstyle.h │ ├── qvalidatedlineedit.cpp │ ├── qvalidatedlineedit.h │ ├── qvaluecombobox.cpp │ ├── qvaluecombobox.h │ ├── receivecoinsdialog.cpp │ ├── receivecoinsdialog.h │ ├── receiverequestdialog.cpp │ ├── receiverequestdialog.h │ ├── recentrequeststablemodel.cpp │ ├── recentrequeststablemodel.h │ ├── recover.cpp │ ├── recover.h │ ├── res │ │ ├── bitcoin-qt-res.rc │ │ ├── icons │ │ │ ├── about.png │ │ │ ├── about_qt.png │ │ │ ├── add.png │ │ │ ├── address-book.png │ │ │ ├── balances.png │ │ │ ├── bitcoin.ico │ │ │ ├── bitcoin.png │ │ │ ├── bitcoin_testnet.ico │ │ │ ├── bitcoin_testnet.png │ │ │ ├── chevron.png │ │ │ ├── clock1.png │ │ │ ├── clock2.png │ │ │ ├── clock3.png │ │ │ ├── clock4.png │ │ │ ├── clock5.png │ │ │ ├── configure.png │ │ │ ├── connect0.png │ │ │ ├── connect1.png │ │ │ ├── connect2.png │ │ │ ├── connect3.png │ │ │ ├── connect4.png │ │ │ ├── debugwindow.png │ │ │ ├── edit.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── elysium_hourglass.png │ │ │ ├── elysium_in.png │ │ │ ├── elysium_inout.png │ │ │ ├── elysium_invalid.png │ │ │ ├── elysium_out.png │ │ │ ├── encrypt.png │ │ │ ├── exchange.png │ │ │ ├── export.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── filesave.png │ │ │ ├── fontbigger.png │ │ │ ├── fontsmaller.png │ │ │ ├── history.png │ │ │ ├── index.icns │ │ │ ├── index.ico │ │ │ ├── index.png │ │ │ ├── index.svg │ │ │ ├── index_testnet.ico │ │ │ ├── index_testnet.png │ │ │ ├── indexnodes.png │ │ │ ├── info.png │ │ │ ├── key.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── meta_cancelled.png │ │ │ ├── meta_filled.png │ │ │ ├── meta_open.png │ │ │ ├── meta_partcancelled.png │ │ │ ├── meta_partfilled.png │ │ │ ├── meta_pending.png │ │ │ ├── old_bitcoin.icns │ │ │ ├── old_bitcoin.ico │ │ │ ├── old_bitcoin.png │ │ │ ├── old_bitcoin_testnet.ico │ │ │ ├── open.png │ │ │ ├── overview.png │ │ │ ├── qrcode.png │ │ │ ├── quit.png │ │ │ ├── receive.png │ │ │ ├── remove.png │ │ │ ├── send.png │ │ │ ├── sigma.png │ │ │ ├── staking_off.png │ │ │ ├── staking_on.png │ │ │ ├── synced.png │ │ │ ├── tools.png │ │ │ ├── transaction0.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_abandoned.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ ├── tx_output.png │ │ │ ├── verify.png │ │ │ ├── warning.png │ │ │ ├── zerocoin.png │ │ │ └── znodes.png │ │ ├── images │ │ │ ├── about.png │ │ │ ├── splash-testnet.png │ │ │ ├── splash.png │ │ │ └── splash_testnet.png │ │ ├── movies │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── mine.svg │ │ │ ├── qt.svg │ │ │ ├── spinner.png │ │ │ ├── transaction0.svg │ │ │ ├── tx_in.svg │ │ │ ├── tx_inout.svg │ │ │ └── verify.svg │ │ └── styles │ │ │ ├── theme1 │ │ │ ├── app-icons │ │ │ │ ├── bg.png │ │ │ │ ├── cb_up_down_arrow.png │ │ │ │ ├── checkbox_checked.png │ │ │ │ ├── checkbox_checked_disabled.png │ │ │ │ ├── checkbox_checked_hover.png │ │ │ │ ├── checkbox_indeterminate.png │ │ │ │ ├── checkbox_indeterminate_disabled.png │ │ │ │ ├── checkbox_indeterminate_hover.png │ │ │ │ ├── checkbox_unchecked.png │ │ │ │ ├── checkbox_unchecked_disabled.png │ │ │ │ ├── checkbox_unchecked_hover.png │ │ │ │ ├── down_arrow.png │ │ │ │ ├── down_arrow_disabled.png │ │ │ │ ├── down_arrow_hover.png │ │ │ │ ├── down_arrow_unit.png │ │ │ │ ├── message_critical.png │ │ │ │ ├── message_info.png │ │ │ │ ├── message_question.png │ │ │ │ ├── message_warning.png │ │ │ │ ├── radiobutton_checked.png │ │ │ │ ├── radiobutton_checked_disabled.png │ │ │ │ ├── radiobutton_checked_hover.png │ │ │ │ ├── radiobutton_unchecked.png │ │ │ │ ├── radiobutton_unchecked_disabled.png │ │ │ │ ├── radiobutton_unchecked_hover.png │ │ │ │ ├── slider_switcher.png │ │ │ │ ├── slider_switcher_disabled.png │ │ │ │ ├── slider_switcher_hover.png │ │ │ │ ├── spinBox.png │ │ │ │ ├── spinBoxDisabled.png │ │ │ │ ├── spinBoxFocus.png │ │ │ │ ├── spinBoxHover.png │ │ │ │ ├── splash_bg.png │ │ │ │ ├── toolbutton_down_arrow.png │ │ │ │ ├── toolbutton_right_arrow.png │ │ │ │ ├── up_arrow.png │ │ │ │ ├── up_arrow_disabled.png │ │ │ │ └── up_arrow_hover.png │ │ │ ├── app.css │ │ │ ├── buttondark.css │ │ │ ├── buttongray.css │ │ │ ├── buttonlight.css │ │ │ ├── buttontransparent.css │ │ │ ├── buttontransparentbordered.css │ │ │ ├── config.ini │ │ │ ├── invalid.css │ │ │ ├── navbutton.css │ │ │ ├── navgroupbutton.css │ │ │ ├── navsubgroupbutton.css │ │ │ ├── scrollbardark.css │ │ │ ├── scrollbarlight.css │ │ │ ├── tableviewlight.css │ │ │ └── treeview.css │ │ │ ├── theme2 │ │ │ ├── app-icons │ │ │ │ ├── bg.png │ │ │ │ ├── cb_up_down_arrow.png │ │ │ │ ├── checkbox_checked.png │ │ │ │ ├── checkbox_checked_disabled.png │ │ │ │ ├── checkbox_checked_hover.png │ │ │ │ ├── checkbox_indeterminate.png │ │ │ │ ├── checkbox_indeterminate_disabled.png │ │ │ │ ├── checkbox_indeterminate_hover.png │ │ │ │ ├── checkbox_unchecked.png │ │ │ │ ├── checkbox_unchecked_disabled.png │ │ │ │ ├── checkbox_unchecked_hover.png │ │ │ │ ├── down_arrow.png │ │ │ │ ├── down_arrow_disabled.png │ │ │ │ ├── down_arrow_hover.png │ │ │ │ ├── down_arrow_unit.png │ │ │ │ ├── radiobutton_checked.png │ │ │ │ ├── radiobutton_checked_disabled.png │ │ │ │ ├── radiobutton_checked_hover.png │ │ │ │ ├── radiobutton_unchecked.png │ │ │ │ ├── radiobutton_unchecked_disabled.png │ │ │ │ ├── radiobutton_unchecked_hover.png │ │ │ │ ├── right_arrow.png │ │ │ │ ├── slider_switcher.png │ │ │ │ ├── slider_switcher_disabled.png │ │ │ │ ├── slider_switcher_hover.png │ │ │ │ ├── splash_bg.png │ │ │ │ ├── up_arrow.png │ │ │ │ ├── up_arrow_disabled.png │ │ │ │ └── up_arrow_hover.png │ │ │ ├── app.css │ │ │ ├── buttontransparent.css │ │ │ ├── config.ini │ │ │ ├── invalid.css │ │ │ ├── navbutton.css │ │ │ ├── navgroupbutton.css │ │ │ ├── navsubgroupbutton.css │ │ │ ├── scrollbardark.css │ │ │ ├── tableviewlight.css │ │ │ └── treeview.css │ │ │ └── theme3 │ │ │ ├── app-icons │ │ │ ├── bg.png │ │ │ ├── down_arrow_unit.png │ │ │ └── splash_bg.png │ │ │ ├── app.css │ │ │ ├── buttontransparent.css │ │ │ ├── config.ini │ │ │ ├── invalid.css │ │ │ ├── navbutton.css │ │ │ ├── navgroupbutton.css │ │ │ ├── navsubgroupbutton.css │ │ │ ├── scrollbardark.css │ │ │ ├── tableviewlight.css │ │ │ └── treeview.css │ ├── rpcconsole.cpp │ ├── rpcconsole.h │ ├── sendcoinsdialog.cpp │ ├── sendcoinsdialog.h │ ├── sendcoinsentry.cpp │ ├── sendcoinsentry.h │ ├── sendmpdialog.cpp │ ├── sendmpdialog.h │ ├── sigmacoincontroldialog.cpp │ ├── sigmacoincontroldialog.h │ ├── sigmadialog.cpp │ ├── sigmadialog.h │ ├── signverifymessagedialog.cpp │ ├── signverifymessagedialog.h │ ├── splashscreen.cpp │ ├── splashscreen.h │ ├── test │ │ ├── compattests.cpp │ │ ├── compattests.h │ │ ├── paymentrequestdata.h │ │ ├── paymentservertests.cpp │ │ ├── paymentservertests.h │ │ ├── test_main.cpp │ │ ├── uritests.cpp │ │ └── uritests.h │ ├── tor │ ├── tradehistorydialog.cpp │ ├── tradehistorydialog.h │ ├── trafficgraphwidget.cpp │ ├── trafficgraphwidget.h │ ├── transactiondesc.cpp │ ├── transactiondesc.h │ ├── transactiondescdialog.cpp │ ├── transactiondescdialog.h │ ├── transactionfilterproxy.cpp │ ├── transactionfilterproxy.h │ ├── transactionrecord.cpp │ ├── transactionrecord.h │ ├── transactiontablemodel.cpp │ ├── transactiontablemodel.h │ ├── transactionview.cpp │ ├── transactionview.h │ ├── txhistorydialog.cpp │ ├── txhistorydialog.h │ ├── utilitydialog.cpp │ ├── utilitydialog.h │ ├── walletframe.cpp │ ├── walletframe.h │ ├── walletmodel.cpp │ ├── walletmodel.h │ ├── walletmodeltransaction.cpp │ ├── walletmodeltransaction.h │ ├── walletview.cpp │ ├── walletview.h │ ├── winshutdownmonitor.cpp │ ├── winshutdownmonitor.h │ ├── zc2sigmamodel.cpp │ ├── zc2sigmamodel.h │ ├── zc2sigmapage.cpp │ ├── zc2sigmapage.h │ ├── zerocoinpage.cpp │ └── zerocoinpage.h ├── random.cpp ├── random.h ├── rest.cpp ├── reverselock.h ├── rpc │ ├── blockchain.cpp │ ├── client.cpp │ ├── client.h │ ├── mining.cpp │ ├── misc.cpp │ ├── net.cpp │ ├── protocol.cpp │ ├── protocol.h │ ├── rawtransaction.cpp │ ├── register.h │ ├── rpcindexnode.cpp │ ├── server.cpp │ └── server.h ├── scheduler.cpp ├── scheduler.h ├── script │ ├── bitcoinconsensus.cpp │ ├── bitcoinconsensus.h │ ├── interpreter.cpp │ ├── interpreter.h │ ├── ismine.cpp │ ├── ismine.h │ ├── script.cpp │ ├── script.h │ ├── script_error.cpp │ ├── script_error.h │ ├── sigcache.cpp │ ├── sigcache.h │ ├── sign.cpp │ ├── sign.h │ ├── standard.cpp │ └── standard.h ├── secp256k1 │ ├── .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 │ │ │ └── m4_ax_cxx_compile_stdcxx.m4 │ ├── configure.ac │ ├── contrib │ │ ├── lax_der_parsing.c │ │ ├── lax_der_parsing.h │ │ ├── lax_der_privatekey_parsing.c │ │ └── lax_der_privatekey_parsing.h │ ├── include │ │ ├── GroupElement.h │ │ ├── MultiExponent.h │ │ ├── Scalar.h │ │ ├── secp256k1.h │ │ ├── secp256k1_ecdh.h │ │ └── secp256k1_recovery.h │ ├── libsecp256k1.pc.in │ ├── obj │ │ └── .gitignore │ ├── sage │ │ ├── group_prover.sage │ │ ├── secp256k1.sage │ │ └── weierstrass_prover.sage │ └── src │ │ ├── asm │ │ └── field_10x26_arm.s │ │ ├── basic-config.h │ │ ├── bench.h │ │ ├── bench_ecdh.c │ │ ├── bench_internal.c │ │ ├── bench_recover.c │ │ ├── bench_schnorr_verify.c │ │ ├── bench_sign.c │ │ ├── bench_verify.c │ │ ├── cpp │ │ ├── GroupElement.cpp │ │ ├── MultiExponent.cpp │ │ ├── Scalar.cpp │ │ └── tests.cpp │ │ ├── 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 │ │ ├── ecdh │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ └── recovery │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_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 ├── sigma.cpp ├── sigma.h ├── sigma │ ├── coin.cpp │ ├── coin.h │ ├── coinspend.cpp │ ├── coinspend.h │ ├── openssl_context.h │ ├── params.cpp │ ├── params.h │ ├── r1_proof.h │ ├── r1_proof_generator.h │ ├── r1_proof_generator.hpp │ ├── r1_proof_verifier.h │ ├── r1_proof_verifier.hpp │ ├── remint-blacklist.cpp │ ├── remint.cpp │ ├── remint.h │ ├── sigma_primitives.h │ ├── sigma_primitives.hpp │ ├── sigmaplus_proof.h │ ├── sigmaplus_prover.h │ ├── sigmaplus_prover.hpp │ ├── sigmaplus_verifier.h │ ├── sigmaplus_verifier.hpp │ ├── spend_metadata.cpp │ ├── spend_metadata.h │ └── test │ │ ├── coin_spend_tests.cpp │ │ ├── coin_tests.cpp │ │ ├── primitives_tests.cpp │ │ ├── protocol_tests.cpp │ │ ├── r1_test.cpp │ │ ├── serialize_test.cpp │ │ └── sigma_primitive_types_test.cpp ├── spentindex.h ├── spork.cpp ├── spork.h ├── streams.h ├── support │ ├── allocators │ │ ├── secure.h │ │ └── zeroafterfree.h │ ├── cleanse.cpp │ ├── cleanse.h │ ├── pagelocker.cpp │ └── pagelocker.h ├── sync.cpp ├── sync.h ├── test │ ├── DoS_tests.cpp │ ├── README.md │ ├── addrman_tests.cpp │ ├── allocator_tests.cpp │ ├── amount_tests.cpp │ ├── arith_uint256_tests.cpp │ ├── base32_tests.cpp │ ├── base58_tests.cpp │ ├── base64_tests.cpp │ ├── bctest.py │ ├── bip32_tests.cpp │ ├── bitcoin-util-test.py │ ├── blockencodings_tests.cpp │ ├── bloom_tests.cpp │ ├── bswap_tests.cpp │ ├── buildenv.py.in │ ├── client_api_tests.cpp │ ├── coins_tests.cpp │ ├── compress_tests.cpp │ ├── crypto_tests.cpp │ ├── data │ │ ├── README.md │ │ ├── base58_encode_decode.json │ │ ├── base58_keys_invalid.json │ │ ├── base58_keys_valid.json │ │ ├── bitcoin-util-test.json │ │ ├── blanktx.hex │ │ ├── blanktx.json │ │ ├── script_tests.json │ │ ├── sighash.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 │ │ ├── tx_invalid.json │ │ ├── tx_valid.json │ │ ├── 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 │ │ ├── txcreatesign.hex │ │ └── txcreatesign.json │ ├── dbwrapper_tests.cpp │ ├── fixtures.cpp │ ├── fixtures.h │ ├── getarg_tests.cpp │ ├── hash_tests.cpp │ ├── hdmint_tests.cpp │ ├── indexnode_tests.cpp │ ├── key_tests.cpp │ ├── limitedmap_tests.cpp │ ├── main_tests.cpp │ ├── mbstring_tests.cpp │ ├── mempool_tests.cpp │ ├── merkle_tests.cpp │ ├── miner_tests.cpp │ ├── multiexponentation_test.cpp │ ├── multisig_tests.cpp │ ├── net_tests.cpp │ ├── netbase_tests.cpp │ ├── pmt_tests.cpp │ ├── policyestimator_tests.cpp │ ├── pow_tests.cpp │ ├── prevector_tests.cpp │ ├── remint_tests.cpp │ ├── reverselock_tests.cpp │ ├── rpc_tests.cpp │ ├── sanity_tests.cpp │ ├── scheduler_tests.cpp │ ├── script_P2SH_tests.cpp │ ├── script_tests.cpp │ ├── scriptnum10.h │ ├── scriptnum_tests.cpp │ ├── serialize_tests.cpp │ ├── sighash_tests.cpp │ ├── sigma_manymintspend_test.cpp │ ├── sigma_mintspend_numinputs.cpp │ ├── sigma_mintspend_test.cpp │ ├── sigma_partialspend_mempool_tests.cpp │ ├── sigma_state_tests.cpp │ ├── sigma_transition_test.cpp │ ├── sigopcount_tests.cpp │ ├── skiplist_tests.cpp │ ├── streams_tests.cpp │ ├── test_bitcoin.cpp │ ├── test_bitcoin.h │ ├── testutil.cpp │ ├── testutil.h │ ├── timedata_tests.cpp │ ├── transaction_tests.cpp │ ├── txdb_tests.cpp │ ├── txvalidationcache_tests.cpp │ ├── uint256_tests.cpp │ ├── univalue_tests.cpp │ ├── util_tests.cpp │ ├── versionbits_tests.cpp │ ├── zerocoin_tests.cpp │ ├── zerocoin_tests2.cpp │ ├── zerocoin_tests2_v3.cpp │ ├── zerocoin_tests3.cpp │ ├── zerocoin_tests3_v3.cpp │ └── zmqserver_tests.cpp ├── threadinterrupt.cpp ├── threadinterrupt.h ├── threadsafety.h ├── timedata.cpp ├── timedata.h ├── tinyformat.h ├── tor │ ├── .editorconfig │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── .gitmodules │ ├── CODE_OF_CONDUCT │ ├── CONTRIBUTING │ ├── ChangeLog │ ├── Doxyfile.in │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.nmake │ ├── README │ ├── ReleaseNotes │ ├── acinclude.m4 │ ├── autogen.sh │ ├── changes │ │ ├── bug30189 │ │ ├── bug30316 │ │ ├── bug30452 │ │ ├── bug30475 │ │ ├── bug30713 │ │ ├── bug30744 │ │ ├── geoip-2019-05-13 │ │ ├── geoip-2019-06-10 │ │ ├── ticket28795 │ │ ├── ticket29702 │ │ ├── ticket30213 │ │ ├── ticket30234 │ │ └── ticket30454 │ ├── config.rust.in │ ├── configure.ac │ ├── contrib │ │ ├── README │ │ ├── clang │ │ │ └── sanitize_blacklist.txt │ │ ├── client-tools │ │ │ ├── tor-resolve.py │ │ │ └── torify │ │ ├── dirauth-tools │ │ │ ├── add-tor │ │ │ └── nagios-check-tor-authority-cert │ │ ├── dist │ │ │ ├── rc.subr │ │ │ ├── suse │ │ │ │ └── tor.sh.in │ │ │ ├── tor.service.in │ │ │ ├── tor.sh.in │ │ │ └── torctl.in │ │ ├── include.am │ │ ├── operator-tools │ │ │ ├── linux-tor-prio.sh │ │ │ ├── tor-exit-notice.html │ │ │ └── tor.logrotate.in │ │ ├── or-tools │ │ │ ├── checksocks.pl │ │ │ └── exitlist │ │ └── win32build │ │ │ ├── tor-mingw.nsi.in │ │ │ ├── tor.ico │ │ │ └── tor.nsi.in │ ├── doc │ │ ├── HACKING │ │ │ ├── CodeStructure.md │ │ │ ├── CodingStandards.md │ │ │ ├── CodingStandardsRust.md │ │ │ ├── Fuzzing.md │ │ │ ├── GettingStarted.md │ │ │ ├── GettingStartedRust.md │ │ │ ├── HelpfulTools.md │ │ │ ├── HowToReview.md │ │ │ ├── Maintaining.md │ │ │ ├── Module.md │ │ │ ├── README.1st.md │ │ │ ├── ReleasingTor.md │ │ │ ├── Tracing.md │ │ │ ├── WritingTests.md │ │ │ └── android │ │ │ │ └── Simpleperf.md │ │ ├── TUNING │ │ ├── asciidoc-helper.sh │ │ ├── building-tor-msvc.txt │ │ ├── contrib │ │ │ └── tor-rpm-creation.txt │ │ ├── include.am │ │ ├── state-contents.txt │ │ ├── tor-gencert.1.txt │ │ ├── tor-print-ed-signing-cert.1.txt │ │ ├── tor-resolve.1.txt │ │ ├── tor.1.txt │ │ ├── torify.1.txt │ │ └── torrc_format.txt │ ├── m4 │ │ ├── ax_check_sign.m4 │ │ ├── pc_from_ucontext.m4 │ │ └── pkg.m4 │ ├── scripts │ │ ├── README │ │ ├── coccinelle │ │ │ ├── calloc.cocci │ │ │ ├── ceil_div.cocci │ │ │ ├── malloc_cast.cocci │ │ │ ├── test-operator-cleanup │ │ │ ├── test_assert_int.cocci │ │ │ ├── test_assert_null.cocci │ │ │ ├── test_assert_zero.cocci │ │ │ └── uncalloc.cocci │ │ ├── codegen │ │ │ ├── fuzzing_include_am.py │ │ │ ├── gen_linux_syscalls.pl │ │ │ ├── gen_server_ciphers.py │ │ │ ├── get_mozilla_ciphers.py │ │ │ ├── makedesc.py │ │ │ └── run_trunnel.sh │ │ ├── maint │ │ │ ├── annotate_ifdef_directives │ │ │ ├── checkIncludes.py │ │ │ ├── checkLogs.pl │ │ │ ├── checkOptionDocs.pl.in │ │ │ ├── checkSpace.pl │ │ │ ├── check_config_macros.pl │ │ │ ├── findMergedChanges.pl │ │ │ ├── format_changelog.py │ │ │ ├── lintChanges.py │ │ │ ├── locatemissingdoxygen.py │ │ │ ├── pre-commit.git-hook │ │ │ ├── pre-push.git-hook │ │ │ ├── rectify_include_paths.py │ │ │ ├── redox.py │ │ │ ├── run_calltool.sh │ │ │ ├── sortChanges.py │ │ │ ├── updateCopyright.pl │ │ │ ├── updateRustDependencies.sh │ │ │ └── update_versions.py │ │ └── test │ │ │ ├── appveyor-irc-notify.py │ │ │ ├── chutney-git-bisect.sh │ │ │ ├── cov-blame │ │ │ ├── cov-diff │ │ │ ├── cov-display │ │ │ ├── cov-exclude │ │ │ ├── coverage │ │ │ └── scan-build.sh │ ├── src │ │ ├── app │ │ │ ├── config │ │ │ │ ├── auth_dirs.inc │ │ │ │ ├── config.c │ │ │ │ ├── config.h │ │ │ │ ├── confparse.c │ │ │ │ ├── confparse.h │ │ │ │ ├── fallback_dirs.inc │ │ │ │ ├── or_options_st.h │ │ │ │ ├── or_state_st.h │ │ │ │ ├── statefile.c │ │ │ │ └── statefile.h │ │ │ ├── include.am │ │ │ └── main │ │ │ │ ├── main.c │ │ │ │ ├── main.h │ │ │ │ ├── ntmain.c │ │ │ │ ├── ntmain.h │ │ │ │ ├── subsysmgr.c │ │ │ │ ├── subsysmgr.h │ │ │ │ ├── subsystem_list.c │ │ │ │ └── tor_main.c │ │ ├── config │ │ │ ├── README │ │ │ ├── geoip │ │ │ ├── geoip6 │ │ │ ├── include.am │ │ │ ├── mmdb-convert.py │ │ │ ├── torrc.minimal.in │ │ │ ├── torrc.minimal.in-staging │ │ │ └── torrc.sample.in │ │ ├── core │ │ │ ├── crypto │ │ │ │ ├── hs_ntor.c │ │ │ │ ├── hs_ntor.h │ │ │ │ ├── onion_crypto.c │ │ │ │ ├── onion_crypto.h │ │ │ │ ├── onion_fast.c │ │ │ │ ├── onion_fast.h │ │ │ │ ├── onion_ntor.c │ │ │ │ ├── onion_ntor.h │ │ │ │ ├── onion_tap.c │ │ │ │ ├── onion_tap.h │ │ │ │ ├── relay_crypto.c │ │ │ │ └── relay_crypto.h │ │ │ ├── include.am │ │ │ ├── mainloop │ │ │ │ ├── connection.c │ │ │ │ ├── connection.h │ │ │ │ ├── cpuworker.c │ │ │ │ ├── cpuworker.h │ │ │ │ ├── mainloop.c │ │ │ │ ├── mainloop.h │ │ │ │ ├── netstatus.c │ │ │ │ ├── netstatus.h │ │ │ │ ├── periodic.c │ │ │ │ └── periodic.h │ │ │ ├── or │ │ │ │ ├── addr_policy_st.h │ │ │ │ ├── address_set.c │ │ │ │ ├── address_set.h │ │ │ │ ├── cell_queue_st.h │ │ │ │ ├── cell_st.h │ │ │ │ ├── channel.c │ │ │ │ ├── channel.h │ │ │ │ ├── channelpadding.c │ │ │ │ ├── channelpadding.h │ │ │ │ ├── channeltls.c │ │ │ │ ├── channeltls.h │ │ │ │ ├── circuit_st.h │ │ │ │ ├── circuitbuild.c │ │ │ │ ├── circuitbuild.h │ │ │ │ ├── circuitlist.c │ │ │ │ ├── circuitlist.h │ │ │ │ ├── circuitmux.c │ │ │ │ ├── circuitmux.h │ │ │ │ ├── circuitmux_ewma.c │ │ │ │ ├── circuitmux_ewma.h │ │ │ │ ├── circuitpadding.c │ │ │ │ ├── circuitpadding.h │ │ │ │ ├── circuitstats.c │ │ │ │ ├── circuitstats.h │ │ │ │ ├── circuituse.c │ │ │ │ ├── circuituse.h │ │ │ │ ├── command.c │ │ │ │ ├── command.h │ │ │ │ ├── connection_edge.c │ │ │ │ ├── connection_edge.h │ │ │ │ ├── connection_or.c │ │ │ │ ├── connection_or.h │ │ │ │ ├── connection_st.h │ │ │ │ ├── cpath_build_state_st.h │ │ │ │ ├── crypt_path_reference_st.h │ │ │ │ ├── crypt_path_st.h │ │ │ │ ├── destroy_cell_queue_st.h │ │ │ │ ├── dos.c │ │ │ │ ├── dos.h │ │ │ │ ├── edge_connection_st.h │ │ │ │ ├── entry_connection_st.h │ │ │ │ ├── entry_port_cfg_st.h │ │ │ │ ├── extend_info_st.h │ │ │ │ ├── half_edge_st.h │ │ │ │ ├── listener_connection_st.h │ │ │ │ ├── ocirc_event.c │ │ │ │ ├── ocirc_event.h │ │ │ │ ├── ocirc_event_sys.h │ │ │ │ ├── onion.c │ │ │ │ ├── onion.h │ │ │ │ ├── or.h │ │ │ │ ├── or_circuit_st.h │ │ │ │ ├── or_connection_st.h │ │ │ │ ├── or_handshake_certs_st.h │ │ │ │ ├── or_handshake_state_st.h │ │ │ │ ├── orconn_event.c │ │ │ │ ├── orconn_event.h │ │ │ │ ├── orconn_event_sys.h │ │ │ │ ├── origin_circuit_st.h │ │ │ │ ├── policies.c │ │ │ │ ├── policies.h │ │ │ │ ├── port_cfg_st.h │ │ │ │ ├── protover.c │ │ │ │ ├── protover.h │ │ │ │ ├── protover_rust.c │ │ │ │ ├── reasons.c │ │ │ │ ├── reasons.h │ │ │ │ ├── relay.c │ │ │ │ ├── relay.h │ │ │ │ ├── relay_crypto_st.h │ │ │ │ ├── scheduler.c │ │ │ │ ├── scheduler.h │ │ │ │ ├── scheduler_kist.c │ │ │ │ ├── scheduler_vanilla.c │ │ │ │ ├── server_port_cfg_st.h │ │ │ │ ├── socks_request_st.h │ │ │ │ ├── status.c │ │ │ │ ├── status.h │ │ │ │ ├── tor_version_st.h │ │ │ │ ├── var_cell_st.h │ │ │ │ ├── versions.c │ │ │ │ └── versions.h │ │ │ └── proto │ │ │ │ ├── proto_cell.c │ │ │ │ ├── proto_cell.h │ │ │ │ ├── proto_control0.c │ │ │ │ ├── proto_control0.h │ │ │ │ ├── proto_ext_or.c │ │ │ │ ├── proto_ext_or.h │ │ │ │ ├── proto_http.c │ │ │ │ ├── proto_http.h │ │ │ │ ├── proto_socks.c │ │ │ │ └── proto_socks.h │ │ ├── ext │ │ │ ├── .may_include │ │ │ ├── Makefile.nmake │ │ │ ├── OpenBSD_malloc_Linux.c │ │ │ ├── README │ │ │ ├── byteorder.h │ │ │ ├── csiphash.c │ │ │ ├── curve25519_donna │ │ │ │ ├── README │ │ │ │ ├── curve25519-donna-c64.c │ │ │ │ └── curve25519-donna.c │ │ │ ├── ed25519 │ │ │ │ ├── donna │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.tor │ │ │ │ │ ├── curve25519-donna-32bit.h │ │ │ │ │ ├── curve25519-donna-64bit.h │ │ │ │ │ ├── curve25519-donna-helpers.h │ │ │ │ │ ├── curve25519-donna-sse2.h │ │ │ │ │ ├── ed25519-donna-32bit-sse2.h │ │ │ │ │ ├── ed25519-donna-32bit-tables.h │ │ │ │ │ ├── ed25519-donna-64bit-sse2.h │ │ │ │ │ ├── ed25519-donna-64bit-tables.h │ │ │ │ │ ├── ed25519-donna-64bit-x86-32bit.h │ │ │ │ │ ├── ed25519-donna-64bit-x86.h │ │ │ │ │ ├── ed25519-donna-basepoint-table.h │ │ │ │ │ ├── ed25519-donna-batchverify.h │ │ │ │ │ ├── ed25519-donna-impl-base.h │ │ │ │ │ ├── ed25519-donna-impl-sse2.h │ │ │ │ │ ├── ed25519-donna-portable-identify.h │ │ │ │ │ ├── ed25519-donna-portable.h │ │ │ │ │ ├── ed25519-donna.h │ │ │ │ │ ├── ed25519-hash-custom.h │ │ │ │ │ ├── ed25519-hash.h │ │ │ │ │ ├── ed25519-randombytes-custom.h │ │ │ │ │ ├── ed25519-randombytes.h │ │ │ │ │ ├── ed25519.c │ │ │ │ │ ├── ed25519.h │ │ │ │ │ ├── ed25519_donna_tor.h │ │ │ │ │ ├── ed25519_tor.c │ │ │ │ │ ├── fuzz │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── build-nix.php │ │ │ │ │ │ ├── curve25519-ref10.c │ │ │ │ │ │ ├── curve25519-ref10.h │ │ │ │ │ │ ├── ed25519-donna-sse2.c │ │ │ │ │ │ ├── ed25519-donna.c │ │ │ │ │ │ ├── ed25519-donna.h │ │ │ │ │ │ ├── ed25519-ref10.c │ │ │ │ │ │ ├── ed25519-ref10.h │ │ │ │ │ │ ├── fuzz-curve25519.c │ │ │ │ │ │ └── fuzz-ed25519.c │ │ │ │ │ ├── modm-donna-32bit.h │ │ │ │ │ ├── modm-donna-64bit.h │ │ │ │ │ ├── regression.h │ │ │ │ │ ├── test-internals.c │ │ │ │ │ ├── test-ticks.h │ │ │ │ │ └── test.c │ │ │ │ └── ref10 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.tor │ │ │ │ │ ├── api.h │ │ │ │ │ ├── base.h │ │ │ │ │ ├── base.py │ │ │ │ │ ├── base2.h │ │ │ │ │ ├── base2.py │ │ │ │ │ ├── blinding.c │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_int32.h │ │ │ │ │ ├── crypto_int64.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_uint32.h │ │ │ │ │ ├── crypto_uint64.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── d.h │ │ │ │ │ ├── d.py │ │ │ │ │ ├── d2.h │ │ │ │ │ ├── d2.py │ │ │ │ │ ├── ed25519_ref10.h │ │ │ │ │ ├── fe.h │ │ │ │ │ ├── fe_0.c │ │ │ │ │ ├── fe_1.c │ │ │ │ │ ├── fe_add.c │ │ │ │ │ ├── fe_cmov.c │ │ │ │ │ ├── fe_copy.c │ │ │ │ │ ├── fe_frombytes.c │ │ │ │ │ ├── fe_invert.c │ │ │ │ │ ├── fe_isnegative.c │ │ │ │ │ ├── fe_isnonzero.c │ │ │ │ │ ├── fe_mul.c │ │ │ │ │ ├── fe_neg.c │ │ │ │ │ ├── fe_pow22523.c │ │ │ │ │ ├── fe_sq.c │ │ │ │ │ ├── fe_sq2.c │ │ │ │ │ ├── fe_sub.c │ │ │ │ │ ├── fe_tobytes.c │ │ │ │ │ ├── ge.h │ │ │ │ │ ├── ge_add.c │ │ │ │ │ ├── ge_add.h │ │ │ │ │ ├── ge_add.q │ │ │ │ │ ├── ge_double_scalarmult.c │ │ │ │ │ ├── ge_frombytes.c │ │ │ │ │ ├── ge_madd.c │ │ │ │ │ ├── ge_madd.h │ │ │ │ │ ├── ge_madd.q │ │ │ │ │ ├── ge_msub.c │ │ │ │ │ ├── ge_msub.h │ │ │ │ │ ├── ge_msub.q │ │ │ │ │ ├── ge_p1p1_to_p2.c │ │ │ │ │ ├── ge_p1p1_to_p3.c │ │ │ │ │ ├── ge_p2_0.c │ │ │ │ │ ├── ge_p2_dbl.c │ │ │ │ │ ├── ge_p2_dbl.h │ │ │ │ │ ├── ge_p2_dbl.q │ │ │ │ │ ├── ge_p3_0.c │ │ │ │ │ ├── ge_p3_dbl.c │ │ │ │ │ ├── ge_p3_to_cached.c │ │ │ │ │ ├── ge_p3_to_p2.c │ │ │ │ │ ├── ge_p3_tobytes.c │ │ │ │ │ ├── ge_precomp_0.c │ │ │ │ │ ├── ge_scalarmult_base.c │ │ │ │ │ ├── ge_sub.c │ │ │ │ │ ├── ge_sub.h │ │ │ │ │ ├── ge_sub.q │ │ │ │ │ ├── ge_tobytes.c │ │ │ │ │ ├── keyconv.c │ │ │ │ │ ├── keypair.c │ │ │ │ │ ├── open.c │ │ │ │ │ ├── pow22523.h │ │ │ │ │ ├── pow22523.q │ │ │ │ │ ├── pow225521.h │ │ │ │ │ ├── pow225521.q │ │ │ │ │ ├── q2h.sh │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── sc.h │ │ │ │ │ ├── sc_muladd.c │ │ │ │ │ ├── sc_reduce.c │ │ │ │ │ ├── sign.c │ │ │ │ │ ├── sqrtm1.h │ │ │ │ │ └── sqrtm1.py │ │ │ ├── getdelim.c │ │ │ ├── ht.h │ │ │ ├── include.am │ │ │ ├── keccak-tiny │ │ │ │ ├── README.markdown │ │ │ │ ├── do.sh │ │ │ │ ├── keccak-tiny-unrolled.c │ │ │ │ ├── keccak-tiny.c │ │ │ │ └── keccak-tiny.h │ │ │ ├── mulodi │ │ │ │ ├── LICENSE.TXT │ │ │ │ └── mulodi4.c │ │ │ ├── readpassphrase.c │ │ │ ├── siphash.h │ │ │ ├── strlcat.c │ │ │ ├── strlcpy.c │ │ │ ├── timeouts │ │ │ │ ├── .may_include │ │ │ │ ├── Makefile │ │ │ │ ├── Rules.shrc │ │ │ │ ├── bench │ │ │ │ │ ├── Rules.mk │ │ │ │ │ ├── bench-add.lua │ │ │ │ │ ├── bench-aux.lua │ │ │ │ │ ├── bench-del.lua │ │ │ │ │ ├── bench-expire.lua │ │ │ │ │ ├── bench-heap.c │ │ │ │ │ ├── bench-llrb.c │ │ │ │ │ ├── bench-wheel.c │ │ │ │ │ ├── bench.c │ │ │ │ │ ├── bench.h │ │ │ │ │ └── bench.plt │ │ │ │ ├── lua │ │ │ │ │ ├── Rules.mk │ │ │ │ │ └── timeout-lua.c │ │ │ │ ├── test-timeout.c │ │ │ │ ├── timeout-bitops.c │ │ │ │ ├── timeout-debug.h │ │ │ │ ├── timeout.c │ │ │ │ └── timeout.h │ │ │ ├── tinytest.c │ │ │ ├── tinytest.h │ │ │ ├── tinytest_demo.c │ │ │ ├── tinytest_macros.h │ │ │ ├── tor_queue.h │ │ │ ├── tor_queue.txt │ │ │ ├── tor_readpassphrase.h │ │ │ └── trunnel │ │ │ │ ├── trunnel-impl.h │ │ │ │ ├── trunnel.c │ │ │ │ └── trunnel.h │ │ ├── feature │ │ │ ├── api │ │ │ │ ├── tor_api.c │ │ │ │ ├── tor_api.h │ │ │ │ └── tor_api_internal.h │ │ │ ├── client │ │ │ │ ├── addressmap.c │ │ │ │ ├── addressmap.h │ │ │ │ ├── bridges.c │ │ │ │ ├── bridges.h │ │ │ │ ├── circpathbias.c │ │ │ │ ├── circpathbias.h │ │ │ │ ├── dnsserv.c │ │ │ │ ├── dnsserv.h │ │ │ │ ├── entrynodes.c │ │ │ │ ├── entrynodes.h │ │ │ │ ├── transports.c │ │ │ │ └── transports.h │ │ │ ├── control │ │ │ │ ├── btrack.c │ │ │ │ ├── btrack_circuit.c │ │ │ │ ├── btrack_circuit.h │ │ │ │ ├── btrack_orconn.c │ │ │ │ ├── btrack_orconn.h │ │ │ │ ├── btrack_orconn_cevent.c │ │ │ │ ├── btrack_orconn_cevent.h │ │ │ │ ├── btrack_orconn_maps.c │ │ │ │ ├── btrack_orconn_maps.h │ │ │ │ ├── btrack_sys.h │ │ │ │ ├── control.c │ │ │ │ ├── control.h │ │ │ │ ├── control_bootstrap.c │ │ │ │ ├── control_connection_st.h │ │ │ │ ├── fmt_serverstatus.c │ │ │ │ ├── fmt_serverstatus.h │ │ │ │ ├── getinfo_geoip.c │ │ │ │ └── getinfo_geoip.h │ │ │ ├── dirauth │ │ │ │ ├── authmode.c │ │ │ │ ├── authmode.h │ │ │ │ ├── bwauth.c │ │ │ │ ├── bwauth.h │ │ │ │ ├── dircollate.c │ │ │ │ ├── dircollate.h │ │ │ │ ├── dirvote.c │ │ │ │ ├── dirvote.h │ │ │ │ ├── dsigs_parse.c │ │ │ │ ├── dsigs_parse.h │ │ │ │ ├── guardfraction.c │ │ │ │ ├── guardfraction.h │ │ │ │ ├── keypin.c │ │ │ │ ├── keypin.h │ │ │ │ ├── ns_detached_signatures_st.h │ │ │ │ ├── process_descs.c │ │ │ │ ├── process_descs.h │ │ │ │ ├── reachability.c │ │ │ │ ├── reachability.h │ │ │ │ ├── recommend_pkg.c │ │ │ │ ├── recommend_pkg.h │ │ │ │ ├── shared_random.c │ │ │ │ ├── shared_random.h │ │ │ │ ├── shared_random_state.c │ │ │ │ ├── shared_random_state.h │ │ │ │ ├── vote_microdesc_hash_st.h │ │ │ │ ├── voteflags.c │ │ │ │ └── voteflags.h │ │ │ ├── dircache │ │ │ │ ├── cached_dir_st.h │ │ │ │ ├── conscache.c │ │ │ │ ├── conscache.h │ │ │ │ ├── consdiffmgr.c │ │ │ │ ├── consdiffmgr.h │ │ │ │ ├── dircache.c │ │ │ │ ├── dircache.h │ │ │ │ ├── dirserv.c │ │ │ │ └── dirserv.h │ │ │ ├── dirclient │ │ │ │ ├── dir_server_st.h │ │ │ │ ├── dirclient.c │ │ │ │ ├── dirclient.h │ │ │ │ ├── dlstatus.c │ │ │ │ ├── dlstatus.h │ │ │ │ └── download_status_st.h │ │ │ ├── dircommon │ │ │ │ ├── consdiff.c │ │ │ │ ├── consdiff.h │ │ │ │ ├── dir_connection_st.h │ │ │ │ ├── directory.c │ │ │ │ ├── directory.h │ │ │ │ ├── fp_pair.c │ │ │ │ ├── fp_pair.h │ │ │ │ ├── vote_timing_st.h │ │ │ │ ├── voting_schedule.c │ │ │ │ └── voting_schedule.h │ │ │ ├── dirparse │ │ │ │ ├── authcert_members.i │ │ │ │ ├── authcert_parse.c │ │ │ │ ├── authcert_parse.h │ │ │ │ ├── microdesc_parse.c │ │ │ │ ├── microdesc_parse.h │ │ │ │ ├── ns_parse.c │ │ │ │ ├── ns_parse.h │ │ │ │ ├── parsecommon.c │ │ │ │ ├── parsecommon.h │ │ │ │ ├── policy_parse.c │ │ │ │ ├── policy_parse.h │ │ │ │ ├── routerparse.c │ │ │ │ ├── routerparse.h │ │ │ │ ├── sigcommon.c │ │ │ │ ├── sigcommon.h │ │ │ │ ├── signing.c │ │ │ │ ├── signing.h │ │ │ │ ├── unparseable.c │ │ │ │ └── unparseable.h │ │ │ ├── hibernate │ │ │ │ ├── hibernate.c │ │ │ │ └── hibernate.h │ │ │ ├── hs │ │ │ │ ├── hs_cache.c │ │ │ │ ├── hs_cache.h │ │ │ │ ├── hs_cell.c │ │ │ │ ├── hs_cell.h │ │ │ │ ├── hs_circuit.c │ │ │ │ ├── hs_circuit.h │ │ │ │ ├── hs_circuitmap.c │ │ │ │ ├── hs_circuitmap.h │ │ │ │ ├── hs_client.c │ │ │ │ ├── hs_client.h │ │ │ │ ├── hs_common.c │ │ │ │ ├── hs_common.h │ │ │ │ ├── hs_config.c │ │ │ │ ├── hs_config.h │ │ │ │ ├── hs_control.c │ │ │ │ ├── hs_control.h │ │ │ │ ├── hs_descriptor.c │ │ │ │ ├── hs_descriptor.h │ │ │ │ ├── hs_ident.c │ │ │ │ ├── hs_ident.h │ │ │ │ ├── hs_intropoint.c │ │ │ │ ├── hs_intropoint.h │ │ │ │ ├── hs_service.c │ │ │ │ ├── hs_service.h │ │ │ │ ├── hs_stats.c │ │ │ │ ├── hs_stats.h │ │ │ │ └── hsdir_index_st.h │ │ │ ├── hs_common │ │ │ │ ├── replaycache.c │ │ │ │ ├── replaycache.h │ │ │ │ ├── shared_random_client.c │ │ │ │ └── shared_random_client.h │ │ │ ├── keymgt │ │ │ │ ├── loadkey.c │ │ │ │ └── loadkey.h │ │ │ ├── nodelist │ │ │ │ ├── authcert.c │ │ │ │ ├── authcert.h │ │ │ │ ├── authority_cert_st.h │ │ │ │ ├── desc_store_st.h │ │ │ │ ├── describe.c │ │ │ │ ├── describe.h │ │ │ │ ├── dirlist.c │ │ │ │ ├── dirlist.h │ │ │ │ ├── document_signature_st.h │ │ │ │ ├── extrainfo_st.h │ │ │ │ ├── fmt_routerstatus.c │ │ │ │ ├── fmt_routerstatus.h │ │ │ │ ├── microdesc.c │ │ │ │ ├── microdesc.h │ │ │ │ ├── microdesc_st.h │ │ │ │ ├── networkstatus.c │ │ │ │ ├── networkstatus.h │ │ │ │ ├── networkstatus_sr_info_st.h │ │ │ │ ├── networkstatus_st.h │ │ │ │ ├── networkstatus_voter_info_st.h │ │ │ │ ├── nickname.c │ │ │ │ ├── nickname.h │ │ │ │ ├── node_select.c │ │ │ │ ├── node_select.h │ │ │ │ ├── node_st.h │ │ │ │ ├── nodefamily.c │ │ │ │ ├── nodefamily.h │ │ │ │ ├── nodefamily_st.h │ │ │ │ ├── nodelist.c │ │ │ │ ├── nodelist.h │ │ │ │ ├── routerinfo.c │ │ │ │ ├── routerinfo.h │ │ │ │ ├── routerinfo_st.h │ │ │ │ ├── routerlist.c │ │ │ │ ├── routerlist.h │ │ │ │ ├── routerlist_st.h │ │ │ │ ├── routerset.c │ │ │ │ ├── routerset.h │ │ │ │ ├── routerstatus_st.h │ │ │ │ ├── signed_descriptor_st.h │ │ │ │ ├── torcert.c │ │ │ │ ├── torcert.h │ │ │ │ └── vote_routerstatus_st.h │ │ │ ├── relay │ │ │ │ ├── dns.c │ │ │ │ ├── dns.h │ │ │ │ ├── dns_structs.h │ │ │ │ ├── ext_orport.c │ │ │ │ ├── ext_orport.h │ │ │ │ ├── onion_queue.c │ │ │ │ ├── onion_queue.h │ │ │ │ ├── router.c │ │ │ │ ├── router.h │ │ │ │ ├── routerkeys.c │ │ │ │ ├── routerkeys.h │ │ │ │ ├── routermode.c │ │ │ │ ├── routermode.h │ │ │ │ ├── selftest.c │ │ │ │ └── selftest.h │ │ │ ├── rend │ │ │ │ ├── rend_authorized_client_st.h │ │ │ │ ├── rend_encoded_v2_service_descriptor_st.h │ │ │ │ ├── rend_intro_point_st.h │ │ │ │ ├── rend_service_descriptor_st.h │ │ │ │ ├── rendcache.c │ │ │ │ ├── rendcache.h │ │ │ │ ├── rendclient.c │ │ │ │ ├── rendclient.h │ │ │ │ ├── rendcommon.c │ │ │ │ ├── rendcommon.h │ │ │ │ ├── rendmid.c │ │ │ │ ├── rendmid.h │ │ │ │ ├── rendparse.c │ │ │ │ ├── rendparse.h │ │ │ │ ├── rendservice.c │ │ │ │ └── rendservice.h │ │ │ └── stats │ │ │ │ ├── geoip_stats.c │ │ │ │ ├── geoip_stats.h │ │ │ │ ├── predict_ports.c │ │ │ │ ├── predict_ports.h │ │ │ │ ├── rephist.c │ │ │ │ └── rephist.h │ │ ├── include.am │ │ ├── lib │ │ │ ├── arch │ │ │ │ ├── .may_include │ │ │ │ ├── bytes.h │ │ │ │ └── include.am │ │ │ ├── buf │ │ │ │ ├── .may_include │ │ │ │ ├── buffers.c │ │ │ │ ├── buffers.h │ │ │ │ └── include.am │ │ │ ├── cc │ │ │ │ ├── .may_include │ │ │ │ ├── compat_compiler.h │ │ │ │ ├── ctassert.h │ │ │ │ ├── include.am │ │ │ │ └── torint.h │ │ │ ├── compress │ │ │ │ ├── .may_include │ │ │ │ ├── compress.c │ │ │ │ ├── compress.h │ │ │ │ ├── compress_buf.c │ │ │ │ ├── compress_lzma.c │ │ │ │ ├── compress_lzma.h │ │ │ │ ├── compress_none.c │ │ │ │ ├── compress_none.h │ │ │ │ ├── compress_sys.h │ │ │ │ ├── compress_zlib.c │ │ │ │ ├── compress_zlib.h │ │ │ │ ├── compress_zstd.c │ │ │ │ ├── compress_zstd.h │ │ │ │ └── include.am │ │ │ ├── container │ │ │ │ ├── .may_include │ │ │ │ ├── bitarray.h │ │ │ │ ├── bloomfilt.c │ │ │ │ ├── bloomfilt.h │ │ │ │ ├── handles.h │ │ │ │ ├── include.am │ │ │ │ ├── map.c │ │ │ │ ├── map.h │ │ │ │ ├── order.c │ │ │ │ ├── order.h │ │ │ │ ├── smartlist.c │ │ │ │ └── smartlist.h │ │ │ ├── crypt_ops │ │ │ │ ├── .may_include │ │ │ │ ├── aes.h │ │ │ │ ├── aes_nss.c │ │ │ │ ├── aes_openssl.c │ │ │ │ ├── compat_openssl.h │ │ │ │ ├── crypto_cipher.c │ │ │ │ ├── crypto_cipher.h │ │ │ │ ├── crypto_curve25519.c │ │ │ │ ├── crypto_curve25519.h │ │ │ │ ├── crypto_dh.c │ │ │ │ ├── crypto_dh.h │ │ │ │ ├── crypto_dh_nss.c │ │ │ │ ├── crypto_dh_openssl.c │ │ │ │ ├── crypto_digest.c │ │ │ │ ├── crypto_digest.h │ │ │ │ ├── crypto_ed25519.c │ │ │ │ ├── crypto_ed25519.h │ │ │ │ ├── crypto_format.c │ │ │ │ ├── crypto_format.h │ │ │ │ ├── crypto_hkdf.c │ │ │ │ ├── crypto_hkdf.h │ │ │ │ ├── crypto_init.c │ │ │ │ ├── crypto_init.h │ │ │ │ ├── crypto_nss_mgt.c │ │ │ │ ├── crypto_nss_mgt.h │ │ │ │ ├── crypto_ope.c │ │ │ │ ├── crypto_ope.h │ │ │ │ ├── crypto_openssl_mgt.c │ │ │ │ ├── crypto_openssl_mgt.h │ │ │ │ ├── crypto_pwbox.c │ │ │ │ ├── crypto_pwbox.h │ │ │ │ ├── crypto_rand.c │ │ │ │ ├── crypto_rand.h │ │ │ │ ├── crypto_rand_fast.c │ │ │ │ ├── crypto_rand_numeric.c │ │ │ │ ├── crypto_rsa.c │ │ │ │ ├── crypto_rsa.h │ │ │ │ ├── crypto_rsa_nss.c │ │ │ │ ├── crypto_rsa_openssl.c │ │ │ │ ├── crypto_s2k.c │ │ │ │ ├── crypto_s2k.h │ │ │ │ ├── crypto_sys.h │ │ │ │ ├── crypto_util.c │ │ │ │ ├── crypto_util.h │ │ │ │ ├── digestset.c │ │ │ │ ├── digestset.h │ │ │ │ └── include.am │ │ │ ├── ctime │ │ │ │ ├── .may_include │ │ │ │ ├── di_ops.c │ │ │ │ ├── di_ops.h │ │ │ │ └── include.am │ │ │ ├── defs │ │ │ │ ├── .may_include │ │ │ │ ├── dh_sizes.h │ │ │ │ ├── digest_sizes.h │ │ │ │ ├── include.am │ │ │ │ ├── time.h │ │ │ │ └── x25519_sizes.h │ │ │ ├── encoding │ │ │ │ ├── .may_include │ │ │ │ ├── binascii.c │ │ │ │ ├── binascii.h │ │ │ │ ├── confline.c │ │ │ │ ├── confline.h │ │ │ │ ├── cstring.c │ │ │ │ ├── cstring.h │ │ │ │ ├── include.am │ │ │ │ ├── keyval.c │ │ │ │ ├── keyval.h │ │ │ │ ├── kvline.c │ │ │ │ ├── kvline.h │ │ │ │ ├── pem.c │ │ │ │ ├── pem.h │ │ │ │ ├── time_fmt.c │ │ │ │ └── time_fmt.h │ │ │ ├── err │ │ │ │ ├── .may_include │ │ │ │ ├── backtrace.c │ │ │ │ ├── backtrace.h │ │ │ │ ├── include.am │ │ │ │ ├── torerr.c │ │ │ │ ├── torerr.h │ │ │ │ ├── torerr_sys.c │ │ │ │ └── torerr_sys.h │ │ │ ├── evloop │ │ │ │ ├── .may_include │ │ │ │ ├── compat_libevent.c │ │ │ │ ├── compat_libevent.h │ │ │ │ ├── include.am │ │ │ │ ├── procmon.c │ │ │ │ ├── procmon.h │ │ │ │ ├── timers.c │ │ │ │ ├── timers.h │ │ │ │ ├── token_bucket.c │ │ │ │ ├── token_bucket.h │ │ │ │ ├── workqueue.c │ │ │ │ └── workqueue.h │ │ │ ├── fdio │ │ │ │ ├── .may_include │ │ │ │ ├── fdio.c │ │ │ │ ├── fdio.h │ │ │ │ └── include.am │ │ │ ├── fs │ │ │ │ ├── .may_include │ │ │ │ ├── conffile.c │ │ │ │ ├── conffile.h │ │ │ │ ├── dir.c │ │ │ │ ├── dir.h │ │ │ │ ├── files.c │ │ │ │ ├── files.h │ │ │ │ ├── freespace.c │ │ │ │ ├── include.am │ │ │ │ ├── lockfile.c │ │ │ │ ├── lockfile.h │ │ │ │ ├── mmap.c │ │ │ │ ├── mmap.h │ │ │ │ ├── path.c │ │ │ │ ├── path.h │ │ │ │ ├── storagedir.c │ │ │ │ ├── storagedir.h │ │ │ │ ├── userdb.c │ │ │ │ ├── userdb.h │ │ │ │ ├── winlib.c │ │ │ │ └── winlib.h │ │ │ ├── geoip │ │ │ │ ├── .may_include │ │ │ │ ├── country.h │ │ │ │ ├── geoip.c │ │ │ │ ├── geoip.h │ │ │ │ └── include.am │ │ │ ├── include.libdonna.am │ │ │ ├── intmath │ │ │ │ ├── .may_include │ │ │ │ ├── addsub.c │ │ │ │ ├── addsub.h │ │ │ │ ├── bits.c │ │ │ │ ├── bits.h │ │ │ │ ├── cmp.h │ │ │ │ ├── include.am │ │ │ │ ├── logic.h │ │ │ │ ├── muldiv.c │ │ │ │ ├── muldiv.h │ │ │ │ ├── weakrng.c │ │ │ │ └── weakrng.h │ │ │ ├── lock │ │ │ │ ├── .may_include │ │ │ │ ├── compat_mutex.c │ │ │ │ ├── compat_mutex.h │ │ │ │ ├── compat_mutex_pthreads.c │ │ │ │ ├── compat_mutex_winthreads.c │ │ │ │ └── include.am │ │ │ ├── log │ │ │ │ ├── .may_include │ │ │ │ ├── escape.c │ │ │ │ ├── escape.h │ │ │ │ ├── include.am │ │ │ │ ├── log.c │ │ │ │ ├── log.h │ │ │ │ ├── log_sys.c │ │ │ │ ├── log_sys.h │ │ │ │ ├── ratelim.c │ │ │ │ ├── ratelim.h │ │ │ │ ├── util_bug.c │ │ │ │ ├── util_bug.h │ │ │ │ ├── win32err.c │ │ │ │ └── win32err.h │ │ │ ├── malloc │ │ │ │ ├── .may_include │ │ │ │ ├── include.am │ │ │ │ ├── malloc.c │ │ │ │ ├── malloc.h │ │ │ │ ├── map_anon.c │ │ │ │ └── map_anon.h │ │ │ ├── math │ │ │ │ ├── .may_include │ │ │ │ ├── fp.c │ │ │ │ ├── fp.h │ │ │ │ ├── include.am │ │ │ │ ├── laplace.c │ │ │ │ ├── laplace.h │ │ │ │ ├── prob_distr.c │ │ │ │ └── prob_distr.h │ │ │ ├── memarea │ │ │ │ ├── .may_include │ │ │ │ ├── include.am │ │ │ │ ├── memarea.c │ │ │ │ └── memarea.h │ │ │ ├── meminfo │ │ │ │ ├── .may_include │ │ │ │ ├── include.am │ │ │ │ ├── meminfo.c │ │ │ │ └── meminfo.h │ │ │ ├── net │ │ │ │ ├── .may_include │ │ │ │ ├── address.c │ │ │ │ ├── address.h │ │ │ │ ├── alertsock.c │ │ │ │ ├── alertsock.h │ │ │ │ ├── buffers_net.c │ │ │ │ ├── buffers_net.h │ │ │ │ ├── gethostname.c │ │ │ │ ├── gethostname.h │ │ │ │ ├── inaddr.c │ │ │ │ ├── inaddr.h │ │ │ │ ├── inaddr_st.h │ │ │ │ ├── include.am │ │ │ │ ├── nettypes.h │ │ │ │ ├── network_sys.c │ │ │ │ ├── network_sys.h │ │ │ │ ├── resolve.c │ │ │ │ ├── resolve.h │ │ │ │ ├── socket.c │ │ │ │ ├── socket.h │ │ │ │ ├── socketpair.c │ │ │ │ ├── socketpair.h │ │ │ │ └── socks5_status.h │ │ │ ├── osinfo │ │ │ │ ├── .may_include │ │ │ │ ├── include.am │ │ │ │ ├── uname.c │ │ │ │ └── uname.h │ │ │ ├── process │ │ │ │ ├── .may_include │ │ │ │ ├── daemon.c │ │ │ │ ├── daemon.h │ │ │ │ ├── env.c │ │ │ │ ├── env.h │ │ │ │ ├── include.am │ │ │ │ ├── pidfile.c │ │ │ │ ├── pidfile.h │ │ │ │ ├── process.c │ │ │ │ ├── process.h │ │ │ │ ├── process_sys.c │ │ │ │ ├── process_sys.h │ │ │ │ ├── process_unix.c │ │ │ │ ├── process_unix.h │ │ │ │ ├── process_win32.c │ │ │ │ ├── process_win32.h │ │ │ │ ├── restrict.c │ │ │ │ ├── restrict.h │ │ │ │ ├── setuid.c │ │ │ │ ├── setuid.h │ │ │ │ ├── waitpid.c │ │ │ │ ├── waitpid.h │ │ │ │ ├── winprocess_sys.c │ │ │ │ └── winprocess_sys.h │ │ │ ├── sandbox │ │ │ │ ├── .may_include │ │ │ │ ├── include.am │ │ │ │ ├── linux_syscalls.inc │ │ │ │ ├── sandbox.c │ │ │ │ └── sandbox.h │ │ │ ├── smartlist_core │ │ │ │ ├── .may_include │ │ │ │ ├── include.am │ │ │ │ ├── smartlist_core.c │ │ │ │ ├── smartlist_core.h │ │ │ │ ├── smartlist_foreach.h │ │ │ │ ├── smartlist_split.c │ │ │ │ └── smartlist_split.h │ │ │ ├── string │ │ │ │ ├── .may_include │ │ │ │ ├── compat_ctype.c │ │ │ │ ├── compat_ctype.h │ │ │ │ ├── compat_string.c │ │ │ │ ├── compat_string.h │ │ │ │ ├── include.am │ │ │ │ ├── parse_int.c │ │ │ │ ├── parse_int.h │ │ │ │ ├── printf.c │ │ │ │ ├── printf.h │ │ │ │ ├── scanf.c │ │ │ │ ├── scanf.h │ │ │ │ ├── util_string.c │ │ │ │ └── util_string.h │ │ │ ├── subsys │ │ │ │ ├── .may_include │ │ │ │ ├── include.am │ │ │ │ └── subsys.h │ │ │ ├── term │ │ │ │ ├── .may_include │ │ │ │ ├── getpass.c │ │ │ │ ├── getpass.h │ │ │ │ └── include.am │ │ │ ├── testsupport │ │ │ │ ├── .may_include │ │ │ │ ├── include.am │ │ │ │ └── testsupport.h │ │ │ ├── thread │ │ │ │ ├── .may_include │ │ │ │ ├── compat_pthreads.c │ │ │ │ ├── compat_threads.c │ │ │ │ ├── compat_winthreads.c │ │ │ │ ├── include.am │ │ │ │ ├── numcpus.c │ │ │ │ ├── numcpus.h │ │ │ │ ├── thread_sys.h │ │ │ │ └── threads.h │ │ │ ├── time │ │ │ │ ├── .may_include │ │ │ │ ├── compat_time.c │ │ │ │ ├── compat_time.h │ │ │ │ ├── include.am │ │ │ │ ├── time_sys.c │ │ │ │ ├── time_sys.h │ │ │ │ ├── tvdiff.c │ │ │ │ └── tvdiff.h │ │ │ ├── tls │ │ │ │ ├── .may_include │ │ │ │ ├── buffers_tls.c │ │ │ │ ├── buffers_tls.h │ │ │ │ ├── ciphers.inc │ │ │ │ ├── include.am │ │ │ │ ├── nss_countbytes.c │ │ │ │ ├── nss_countbytes.h │ │ │ │ ├── tortls.c │ │ │ │ ├── tortls.h │ │ │ │ ├── tortls_internal.h │ │ │ │ ├── tortls_nss.c │ │ │ │ ├── tortls_openssl.c │ │ │ │ ├── tortls_st.h │ │ │ │ ├── tortls_sys.h │ │ │ │ ├── x509.c │ │ │ │ ├── x509.h │ │ │ │ ├── x509_internal.h │ │ │ │ ├── x509_nss.c │ │ │ │ └── x509_openssl.c │ │ │ ├── trace │ │ │ │ ├── .may_include │ │ │ │ ├── debug.h │ │ │ │ ├── events.h │ │ │ │ ├── include.am │ │ │ │ ├── trace.c │ │ │ │ └── trace.h │ │ │ ├── version │ │ │ │ ├── .may_include │ │ │ │ ├── git_revision.c │ │ │ │ ├── git_revision.h │ │ │ │ ├── include.am │ │ │ │ ├── torversion.h │ │ │ │ └── version.c │ │ │ └── wallclock │ │ │ │ ├── .may_include │ │ │ │ ├── approx_time.c │ │ │ │ ├── approx_time.h │ │ │ │ ├── include.am │ │ │ │ ├── time_to_tm.c │ │ │ │ ├── time_to_tm.h │ │ │ │ ├── timeval.h │ │ │ │ ├── tor_gettimeofday.c │ │ │ │ ├── tor_gettimeofday.h │ │ │ │ └── wallclock_sys.h │ │ ├── rust │ │ │ ├── .cargo │ │ │ │ └── config.in │ │ │ ├── .rustfmt.toml │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ ├── crypto │ │ │ │ ├── Cargo.toml │ │ │ │ ├── digests │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── sha2.rs │ │ │ │ ├── lib.rs │ │ │ │ └── rand │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── rng.rs │ │ │ ├── external │ │ │ │ ├── Cargo.toml │ │ │ │ ├── crypto_digest.rs │ │ │ │ ├── crypto_rand.rs │ │ │ │ ├── external.rs │ │ │ │ └── lib.rs │ │ │ ├── include.am │ │ │ ├── protover │ │ │ │ ├── Cargo.toml │ │ │ │ ├── errors.rs │ │ │ │ ├── ffi.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── protoset.rs │ │ │ │ ├── protover.rs │ │ │ │ └── tests │ │ │ │ │ └── protover.rs │ │ │ ├── smartlist │ │ │ │ ├── Cargo.toml │ │ │ │ ├── lib.rs │ │ │ │ └── smartlist.rs │ │ │ ├── tor_allocate │ │ │ │ ├── Cargo.toml │ │ │ │ ├── lib.rs │ │ │ │ └── tor_allocate.rs │ │ │ ├── tor_log │ │ │ │ ├── Cargo.toml │ │ │ │ ├── lib.rs │ │ │ │ └── tor_log.rs │ │ │ ├── tor_rust │ │ │ │ ├── Cargo.toml │ │ │ │ ├── include.am │ │ │ │ └── lib.rs │ │ │ └── tor_util │ │ │ │ ├── Cargo.toml │ │ │ │ ├── ffi.rs │ │ │ │ ├── lib.rs │ │ │ │ └── strings.rs │ │ ├── test │ │ │ ├── Makefile.nmake │ │ │ ├── bench.c │ │ │ ├── bt_test.py │ │ │ ├── ed25519_exts_ref.py │ │ │ ├── ed25519_vectors.inc │ │ │ ├── example_extrainfo.inc │ │ │ ├── failing_routerdescs.inc │ │ │ ├── fakechans.h │ │ │ ├── fuzz │ │ │ │ ├── dict │ │ │ │ │ ├── consensus │ │ │ │ │ ├── descriptor │ │ │ │ │ ├── extrainfo │ │ │ │ │ ├── hsdescv2 │ │ │ │ │ ├── hsdescv3 │ │ │ │ │ ├── http │ │ │ │ │ ├── iptsv2 │ │ │ │ │ └── microdesc │ │ │ │ ├── fixup_filenames.sh │ │ │ │ ├── fuzz_consensus.c │ │ │ │ ├── fuzz_descriptor.c │ │ │ │ ├── fuzz_diff.c │ │ │ │ ├── fuzz_diff_apply.c │ │ │ │ ├── fuzz_extrainfo.c │ │ │ │ ├── fuzz_hsdescv2.c │ │ │ │ ├── fuzz_hsdescv3.c │ │ │ │ ├── fuzz_http.c │ │ │ │ ├── fuzz_http_connect.c │ │ │ │ ├── fuzz_iptsv2.c │ │ │ │ ├── fuzz_microdesc.c │ │ │ │ ├── fuzz_multi.sh │ │ │ │ ├── fuzz_socks.c │ │ │ │ ├── fuzz_strops.c │ │ │ │ ├── fuzz_vrs.c │ │ │ │ ├── fuzzing.h │ │ │ │ ├── fuzzing_common.c │ │ │ │ ├── include.am │ │ │ │ └── minimize.sh │ │ │ ├── fuzz_static_testcases.sh │ │ │ ├── hs_build_address.py │ │ │ ├── hs_indexes.py │ │ │ ├── hs_ntor_ref.py │ │ │ ├── hs_test_helpers.c │ │ │ ├── hs_test_helpers.h │ │ │ ├── include.am │ │ │ ├── log_test_helpers.c │ │ │ ├── log_test_helpers.h │ │ │ ├── ntor_ref.py │ │ │ ├── ope_ref.py │ │ │ ├── prob_distr_mpfr_ref.c │ │ │ ├── rend_test_helpers.c │ │ │ ├── rend_test_helpers.h │ │ │ ├── rust_supp.txt │ │ │ ├── slow_ed25519.py │ │ │ ├── slownacl_curve25519.py │ │ │ ├── sr_commit_calc_ref.py │ │ │ ├── sr_srv_calc_ref.py │ │ │ ├── test-memwipe.c │ │ │ ├── test-network.sh │ │ │ ├── test-process.c │ │ │ ├── test-timers.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ ├── test_accounting.c │ │ │ ├── test_addr.c │ │ │ ├── test_address.c │ │ │ ├── test_address_set.c │ │ │ ├── test_bridges.c │ │ │ ├── test_bt.sh │ │ │ ├── test_bt_cl.c │ │ │ ├── test_btrack.c │ │ │ ├── test_buffers.c │ │ │ ├── test_bwmgt.c │ │ │ ├── test_cell_formats.c │ │ │ ├── test_cell_queue.c │ │ │ ├── test_channel.c │ │ │ ├── test_channelpadding.c │ │ │ ├── test_channeltls.c │ │ │ ├── test_checkdir.c │ │ │ ├── test_circuitbuild.c │ │ │ ├── test_circuitlist.c │ │ │ ├── test_circuitmux.c │ │ │ ├── test_circuitpadding.c │ │ │ ├── test_circuitstats.c │ │ │ ├── test_circuituse.c │ │ │ ├── test_compat_libevent.c │ │ │ ├── test_config.c │ │ │ ├── test_connection.c │ │ │ ├── test_connection.h │ │ │ ├── test_conscache.c │ │ │ ├── test_consdiff.c │ │ │ ├── test_consdiffmgr.c │ │ │ ├── test_containers.c │ │ │ ├── test_controller.c │ │ │ ├── test_controller_events.c │ │ │ ├── test_crypto.c │ │ │ ├── test_crypto_ope.c │ │ │ ├── test_crypto_openssl.c │ │ │ ├── test_crypto_rng.c │ │ │ ├── test_crypto_slow.c │ │ │ ├── test_data.c │ │ │ ├── test_descriptors.inc │ │ │ ├── test_dir.c │ │ │ ├── test_dir_common.c │ │ │ ├── test_dir_common.h │ │ │ ├── test_dir_handle_get.c │ │ │ ├── test_dns.c │ │ │ ├── test_dos.c │ │ │ ├── test_entryconn.c │ │ │ ├── test_entrynodes.c │ │ │ ├── test_extorport.c │ │ │ ├── test_geoip.c │ │ │ ├── test_guardfraction.c │ │ │ ├── test_handles.c │ │ │ ├── test_helpers.c │ │ │ ├── test_helpers.h │ │ │ ├── test_hs.c │ │ │ ├── test_hs_cache.c │ │ │ ├── test_hs_cell.c │ │ │ ├── test_hs_client.c │ │ │ ├── test_hs_common.c │ │ │ ├── test_hs_config.c │ │ │ ├── test_hs_control.c │ │ │ ├── test_hs_descriptor.c │ │ │ ├── test_hs_descriptor.inc │ │ │ ├── test_hs_intropoint.c │ │ │ ├── test_hs_ntor.c │ │ │ ├── test_hs_ntor.sh │ │ │ ├── test_hs_ntor_cl.c │ │ │ ├── test_hs_service.c │ │ │ ├── test_introduce.c │ │ │ ├── test_key_expiration.sh │ │ │ ├── test_keygen.sh │ │ │ ├── test_keypin.c │ │ │ ├── test_link_handshake.c │ │ │ ├── test_logging.c │ │ │ ├── test_mainloop.c │ │ │ ├── test_microdesc.c │ │ │ ├── test_netinfo.c │ │ │ ├── test_nodelist.c │ │ │ ├── test_ntor.sh │ │ │ ├── test_ntor_cl.c │ │ │ ├── test_oom.c │ │ │ ├── test_oos.c │ │ │ ├── test_options.c │ │ │ ├── test_parsecommon.c │ │ │ ├── test_pem.c │ │ │ ├── test_periodic_event.c │ │ │ ├── test_policy.c │ │ │ ├── test_prob_distr.c │ │ │ ├── test_process.c │ │ │ ├── test_process_slow.c │ │ │ ├── test_procmon.c │ │ │ ├── test_proto_http.c │ │ │ ├── test_proto_misc.c │ │ │ ├── test_protover.c │ │ │ ├── test_pt.c │ │ │ ├── test_rebind.py │ │ │ ├── test_rebind.sh │ │ │ ├── test_relay.c │ │ │ ├── test_relaycell.c │ │ │ ├── test_relaycrypt.c │ │ │ ├── test_rendcache.c │ │ │ ├── test_replay.c │ │ │ ├── test_rng.c │ │ │ ├── test_router.c │ │ │ ├── test_routerkeys.c │ │ │ ├── test_routerlist.c │ │ │ ├── test_routerset.c │ │ │ ├── test_rust.sh │ │ │ ├── test_scheduler.c │ │ │ ├── test_shared_random.c │ │ │ ├── test_slow.c │ │ │ ├── test_socks.c │ │ │ ├── test_status.c │ │ │ ├── test_storagedir.c │ │ │ ├── test_switch_id.c │ │ │ ├── test_switch_id.sh │ │ │ ├── test_threads.c │ │ │ ├── test_tortls.c │ │ │ ├── test_tortls.h │ │ │ ├── test_tortls_openssl.c │ │ │ ├── test_util.c │ │ │ ├── test_util_format.c │ │ │ ├── test_util_process.c │ │ │ ├── test_voting_flags.c │ │ │ ├── test_voting_schedule.c │ │ │ ├── test_workqueue.c │ │ │ ├── test_workqueue_cancel.sh │ │ │ ├── test_workqueue_efd.sh │ │ │ ├── test_workqueue_efd2.sh │ │ │ ├── test_workqueue_pipe.sh │ │ │ ├── test_workqueue_pipe2.sh │ │ │ ├── test_workqueue_socketpair.sh │ │ │ ├── test_x509.c │ │ │ ├── test_zero_length_keys.sh │ │ │ ├── testing_common.c │ │ │ ├── testing_rsakeys.c │ │ │ ├── vote_descriptors.inc │ │ │ └── zero_length_keys.sh │ │ ├── tools │ │ │ ├── Makefile.nmake │ │ │ ├── include.am │ │ │ ├── tor-gencert.c │ │ │ ├── tor-print-ed-signing-cert.c │ │ │ ├── tor-resolve.c │ │ │ └── tor_runner.c │ │ ├── trunnel │ │ │ ├── README │ │ │ ├── channelpadding_negotiation.c │ │ │ ├── channelpadding_negotiation.h │ │ │ ├── channelpadding_negotiation.trunnel │ │ │ ├── circpad_negotiation.c │ │ │ ├── circpad_negotiation.h │ │ │ ├── circpad_negotiation.trunnel │ │ │ ├── ed25519_cert.c │ │ │ ├── ed25519_cert.h │ │ │ ├── ed25519_cert.trunnel │ │ │ ├── hs │ │ │ │ ├── cell_common.c │ │ │ │ ├── cell_common.h │ │ │ │ ├── cell_common.trunnel │ │ │ │ ├── cell_establish_intro.c │ │ │ │ ├── cell_establish_intro.h │ │ │ │ ├── cell_establish_intro.trunnel │ │ │ │ ├── cell_introduce1.c │ │ │ │ ├── cell_introduce1.h │ │ │ │ ├── cell_introduce1.trunnel │ │ │ │ ├── cell_rendezvous.c │ │ │ │ ├── cell_rendezvous.h │ │ │ │ └── cell_rendezvous.trunnel │ │ │ ├── include.am │ │ │ ├── link_handshake.c │ │ │ ├── link_handshake.h │ │ │ ├── link_handshake.trunnel │ │ │ ├── netinfo.c │ │ │ ├── netinfo.h │ │ │ ├── netinfo.trunnel │ │ │ ├── pwbox.c │ │ │ ├── pwbox.h │ │ │ ├── pwbox.trunnel │ │ │ ├── socks5.c │ │ │ ├── socks5.h │ │ │ ├── socks5.trunnel │ │ │ └── trunnel-local.h │ │ └── win32 │ │ │ ├── include.am │ │ │ └── orconfig.h │ └── warning_flags.in ├── torcontrol.cpp ├── torcontrol.h ├── txdb.cpp ├── txdb.h ├── txmempool.cpp ├── txmempool.h ├── ui_interface.cpp ├── ui_interface.h ├── uint256.cpp ├── uint256.h ├── undo.h ├── univalue │ ├── .gitignore │ ├── .travis.yml │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── TODO │ ├── autogen.sh │ ├── build-aux │ │ └── m4 │ │ │ └── .gitignore │ ├── configure.ac │ ├── gen │ │ └── gen.cpp │ ├── include │ │ └── univalue.h │ ├── lib │ │ ├── .gitignore │ │ ├── univalue.cpp │ │ ├── univalue_escapes.h │ │ ├── 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 │ │ ├── fail5.json │ │ ├── fail6.json │ │ ├── fail7.json │ │ ├── fail8.json │ │ ├── fail9.json │ │ ├── pass1.json │ │ ├── pass2.json │ │ ├── pass3.json │ │ ├── round1.json │ │ ├── round2.json │ │ └── unitester.cpp ├── util.cpp ├── util.h ├── utilmoneystr.cpp ├── utilmoneystr.h ├── utilstrencodings.cpp ├── utilstrencodings.h ├── utiltime.cpp ├── utiltime.h ├── validation.cpp ├── validation.h ├── validationinterface.cpp ├── validationinterface.h ├── version.h ├── versionbits.cpp ├── versionbits.h ├── wallet │ ├── authhelper.cpp │ ├── authhelper.h │ ├── bip39.cpp │ ├── bip39.h │ ├── bip39_english.h │ ├── crypter.cpp │ ├── crypter.h │ ├── db.cpp │ ├── db.h │ ├── mnemoniccontainer.cpp │ ├── mnemoniccontainer.h │ ├── rpcdump.cpp │ ├── rpcwallet.cpp │ ├── rpcwallet.h │ ├── sigmaspendbuilder.cpp │ ├── sigmaspendbuilder.h │ ├── test │ │ ├── accounting_tests.cpp │ │ ├── crypto_tests.cpp │ │ ├── mnemonic_tests.cpp │ │ ├── rpc_wallet_tests.cpp │ │ ├── sigma_tests.cpp │ │ ├── txbuilder_tests.cpp │ │ ├── wallet_test_fixture.cpp │ │ ├── wallet_test_fixture.h │ │ └── wallet_tests.cpp │ ├── txbuilder.cpp │ ├── txbuilder.h │ ├── wallet.cpp │ ├── wallet.h │ ├── walletdb.cpp │ ├── walletdb.h │ ├── walletexcept.cpp │ └── walletexcept.h ├── zerocoin.cpp ├── zerocoin.h ├── zerocoin_params.h ├── zmq │ ├── zmqabstractnotifier.cpp │ ├── zmqabstractnotifier.h │ ├── zmqconfig.h │ ├── zmqnotificationinterface.cpp │ ├── zmqnotificationinterface.h │ ├── zmqpublishnotifier.cpp │ └── zmqpublishnotifier.h └── zmqserver │ ├── zmqabstract.cpp │ ├── zmqabstract.h │ ├── zmqconfig.h │ ├── zmqinterface.cpp │ ├── zmqinterface.h │ ├── zmqpublisher.cpp │ ├── zmqpublisher.h │ ├── zmqreplier.cpp │ └── zmqreplier.h ├── testgitian.sh └── torsetting.dat /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/Dockerfile -------------------------------------------------------------------------------- /INDEXNODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/INDEXNODE.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/.gitignore: -------------------------------------------------------------------------------- 1 | /bitcoin-qt.pro.user 2 | -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/bitcoin-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/bitcoin-qt.pro -------------------------------------------------------------------------------- /contrib/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/debian/README.md -------------------------------------------------------------------------------- /contrib/debian/bitcoind.examples: -------------------------------------------------------------------------------- 1 | debian/examples/bitcoin.conf 2 | -------------------------------------------------------------------------------- /contrib/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/debian/changelog -------------------------------------------------------------------------------- /contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/debian/gbp.conf -------------------------------------------------------------------------------- /contrib/debian/patches/series: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/debian/rules -------------------------------------------------------------------------------- /contrib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /contrib/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/debian/watch -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/gitian-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/gitian-build.py -------------------------------------------------------------------------------- /contrib/gitian-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/gitian-build.sh -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/bitcoind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/init/bitcoind.conf -------------------------------------------------------------------------------- /contrib/init/bitcoind.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/init/bitcoind.init -------------------------------------------------------------------------------- /contrib/init/bitcoind.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/init/bitcoind.openrc -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/masternode_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/masternode_setup.py -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/qt_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/qt_translations.py -------------------------------------------------------------------------------- /contrib/rpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/rpm/README.md -------------------------------------------------------------------------------- /contrib/rpm/bitcoin.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/rpm/bitcoin.fc -------------------------------------------------------------------------------- /contrib/rpm/bitcoin.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/rpm/bitcoin.if -------------------------------------------------------------------------------- /contrib/rpm/bitcoin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/rpm/bitcoin.spec -------------------------------------------------------------------------------- /contrib/rpm/bitcoin.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/rpm/bitcoin.te -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/seeds/nodes_main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/seeds/nodes_main.txt -------------------------------------------------------------------------------- /contrib/seeds/nodes_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/seeds/nodes_test.txt -------------------------------------------------------------------------------- /contrib/spendfrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/spendfrom/README.md -------------------------------------------------------------------------------- /contrib/spendfrom/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/spendfrom/setup.py -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/tidy_datadir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/tidy_datadir.sh -------------------------------------------------------------------------------- /contrib/verify-commits/allow-revsig-commits: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | 82bcf405f6db1d55b684a1f63a4aabad376cdad7 2 | -------------------------------------------------------------------------------- /contrib/windeploy/win-codesign.cert: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /depends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/.gitignore -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/builders/default.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/config.site.in -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/bdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/bdb.mk -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/dbus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/dbus.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/freetype.mk -------------------------------------------------------------------------------- /depends/packages/libICE.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/libICE.mk -------------------------------------------------------------------------------- /depends/packages/libSM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/libSM.mk -------------------------------------------------------------------------------- /depends/packages/libX11.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/libX11.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libXext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/libXext.mk -------------------------------------------------------------------------------- /depends/packages/libevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/libevent.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/minizip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/minizip.mk -------------------------------------------------------------------------------- /depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/openssl.mk -------------------------------------------------------------------------------- /depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/packages.mk -------------------------------------------------------------------------------- /depends/packages/protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/protobuf.mk -------------------------------------------------------------------------------- /depends/packages/qrencode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/qrencode.mk -------------------------------------------------------------------------------- /depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/qt.mk -------------------------------------------------------------------------------- /depends/packages/qt46.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/qt46.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/xtrans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/xtrans.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /depends/packages/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/depends/packages/zlib.mk -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/README_osx.md -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/benchmarking.md -------------------------------------------------------------------------------- /doc/bips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/bips.md -------------------------------------------------------------------------------- /doc/bitcoin_logo_doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/bitcoin_logo_doxygen.png -------------------------------------------------------------------------------- /doc/build-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/build-macos.md -------------------------------------------------------------------------------- /doc/build-openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/build-openbsd.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/build-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/build-windows.md -------------------------------------------------------------------------------- /doc/build_windows_wsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/build_windows_wsl.md -------------------------------------------------------------------------------- /doc/client-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/client-api.md -------------------------------------------------------------------------------- /doc/debug-vs2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/debug-vs2017.txt -------------------------------------------------------------------------------- /doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/developer-notes.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/gitian-building.md -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/multiwallet-qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/multiwallet-qt.md -------------------------------------------------------------------------------- /doc/reduce-traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/reduce-traffic.md -------------------------------------------------------------------------------- /doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/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/IndexChain/Index/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/shared-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/shared-libraries.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/translation_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/translation_process.md -------------------------------------------------------------------------------- /doc/travis-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/travis-ci.txt -------------------------------------------------------------------------------- /doc/unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/unit-tests.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/lgtm.yml -------------------------------------------------------------------------------- /libbitcoinconsensus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/libbitcoinconsensus.pc.in -------------------------------------------------------------------------------- /qa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/README.md -------------------------------------------------------------------------------- /qa/pull-tester/rpc-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/pull-tester/rpc-tests.py -------------------------------------------------------------------------------- /qa/rpc-tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | cache 3 | -------------------------------------------------------------------------------- /qa/rpc-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/README.md -------------------------------------------------------------------------------- /qa/rpc-tests/bip65-cltv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/bip65-cltv.py -------------------------------------------------------------------------------- /qa/rpc-tests/bipdersig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/bipdersig.py -------------------------------------------------------------------------------- /qa/rpc-tests/blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/blockchain.py -------------------------------------------------------------------------------- /qa/rpc-tests/create_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/create_cache.py -------------------------------------------------------------------------------- /qa/rpc-tests/decodescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/decodescript.py -------------------------------------------------------------------------------- /qa/rpc-tests/forknotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/forknotify.py -------------------------------------------------------------------------------- /qa/rpc-tests/getchaintips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/getchaintips.py -------------------------------------------------------------------------------- /qa/rpc-tests/httpbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/httpbasics.py -------------------------------------------------------------------------------- /qa/rpc-tests/keypool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/keypool.py -------------------------------------------------------------------------------- /qa/rpc-tests/multi_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/multi_rpc.py -------------------------------------------------------------------------------- /qa/rpc-tests/nodehandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/nodehandling.py -------------------------------------------------------------------------------- /qa/rpc-tests/nulldummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/nulldummy.py -------------------------------------------------------------------------------- /qa/rpc-tests/p2p-mempool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/p2p-mempool.py -------------------------------------------------------------------------------- /qa/rpc-tests/p2p-segwit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/p2p-segwit.py -------------------------------------------------------------------------------- /qa/rpc-tests/proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/proxy_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/pruning.py -------------------------------------------------------------------------------- /qa/rpc-tests/receivedby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/receivedby.py -------------------------------------------------------------------------------- /qa/rpc-tests/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/reindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/rest.py -------------------------------------------------------------------------------- /qa/rpc-tests/rpcbind_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/rpcbind_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/segwit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/segwit.py -------------------------------------------------------------------------------- /qa/rpc-tests/sendheaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/sendheaders.py -------------------------------------------------------------------------------- /qa/rpc-tests/sigma_remint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/sigma_remint.py -------------------------------------------------------------------------------- /qa/rpc-tests/signmessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/signmessages.py -------------------------------------------------------------------------------- /qa/rpc-tests/smartfees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/smartfees.py -------------------------------------------------------------------------------- /qa/rpc-tests/test_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qa/rpc-tests/txn_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/txn_clone.py -------------------------------------------------------------------------------- /qa/rpc-tests/wallet-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/wallet-dump.py -------------------------------------------------------------------------------- /qa/rpc-tests/wallet-hd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/wallet-hd.py -------------------------------------------------------------------------------- /qa/rpc-tests/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/wallet.py -------------------------------------------------------------------------------- /qa/rpc-tests/walletbackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/walletbackup.py -------------------------------------------------------------------------------- /qa/rpc-tests/zmq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/qa/rpc-tests/zmq_test.py -------------------------------------------------------------------------------- /share/genbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/genbuild.sh -------------------------------------------------------------------------------- /share/pixmaps/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin.ico -------------------------------------------------------------------------------- /share/pixmaps/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin.png -------------------------------------------------------------------------------- /share/pixmaps/bitcoin128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin128.png -------------------------------------------------------------------------------- /share/pixmaps/bitcoin128.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin128.xpm -------------------------------------------------------------------------------- /share/pixmaps/bitcoin16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin16.png -------------------------------------------------------------------------------- /share/pixmaps/bitcoin16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin16.xpm -------------------------------------------------------------------------------- /share/pixmaps/bitcoin256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin256.png -------------------------------------------------------------------------------- /share/pixmaps/bitcoin256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin256.xpm -------------------------------------------------------------------------------- /share/pixmaps/bitcoin32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin32.png -------------------------------------------------------------------------------- /share/pixmaps/bitcoin32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin32.xpm -------------------------------------------------------------------------------- /share/pixmaps/bitcoin64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin64.png -------------------------------------------------------------------------------- /share/pixmaps/bitcoin64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/pixmaps/bitcoin64.xpm -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/qt/protobuf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/qt/protobuf.pri -------------------------------------------------------------------------------- /share/rpcuser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/rpcuser/README.md -------------------------------------------------------------------------------- /share/rpcuser/rpcuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/rpcuser/rpcuser.py -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.bench.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/Makefile.bench.include -------------------------------------------------------------------------------- /src/Makefile.elysium.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/Makefile.elysium.include -------------------------------------------------------------------------------- /src/Makefile.leveldb.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/Makefile.leveldb.include -------------------------------------------------------------------------------- /src/Makefile.qt.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/Makefile.qt.include -------------------------------------------------------------------------------- /src/Makefile.qttest.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/Makefile.qttest.include -------------------------------------------------------------------------------- /src/Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/Makefile.test.include -------------------------------------------------------------------------------- /src/activeindexnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/activeindexnode.cpp -------------------------------------------------------------------------------- /src/activeindexnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/activeindexnode.h -------------------------------------------------------------------------------- /src/addressindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/addressindex.h -------------------------------------------------------------------------------- /src/addresstype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/addresstype.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/amount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/amount.cpp -------------------------------------------------------------------------------- /src/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/amount.h -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/auxpow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/auxpow.cpp -------------------------------------------------------------------------------- /src/auxpow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/auxpow.h -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bench/.gitignore: -------------------------------------------------------------------------------- 1 | bench_bitcoin 2 | -------------------------------------------------------------------------------- /src/bench/Examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bench/Examples.cpp -------------------------------------------------------------------------------- /src/bench/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bench/base58.cpp -------------------------------------------------------------------------------- /src/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bench/bench.cpp -------------------------------------------------------------------------------- /src/bench/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bench/bench.h -------------------------------------------------------------------------------- /src/bench/bench_bitcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bench/bench_bitcoin.cpp -------------------------------------------------------------------------------- /src/bench/crypto_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bench/crypto_hash.cpp -------------------------------------------------------------------------------- /src/bench/rollingbloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bench/rollingbloom.cpp -------------------------------------------------------------------------------- /src/bitcoin-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bitcoin-cli-res.rc -------------------------------------------------------------------------------- /src/bitcoin-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bitcoin-cli.cpp -------------------------------------------------------------------------------- /src/bitcoin-tx-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bitcoin-tx-res.rc -------------------------------------------------------------------------------- /src/bitcoin-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bitcoin-tx.cpp -------------------------------------------------------------------------------- /src/bitcoind-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bitcoind-res.rc -------------------------------------------------------------------------------- /src/bitcoind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bitcoind.cpp -------------------------------------------------------------------------------- /src/blacklist/blacklist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/blacklist/blacklist.cpp -------------------------------------------------------------------------------- /src/blacklist/blacklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/blacklist/blacklist.h -------------------------------------------------------------------------------- /src/blockencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/blockencodings.cpp -------------------------------------------------------------------------------- /src/blockencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/blockencodings.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/checkpoints.cpp -------------------------------------------------------------------------------- /src/checkpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/checkpoints.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/client-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/README.md -------------------------------------------------------------------------------- /src/client-api/indexnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/indexnode.cpp -------------------------------------------------------------------------------- /src/client-api/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/misc.cpp -------------------------------------------------------------------------------- /src/client-api/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/protocol.cpp -------------------------------------------------------------------------------- /src/client-api/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/protocol.h -------------------------------------------------------------------------------- /src/client-api/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/register.h -------------------------------------------------------------------------------- /src/client-api/send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/send.cpp -------------------------------------------------------------------------------- /src/client-api/send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/send.h -------------------------------------------------------------------------------- /src/client-api/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/server.cpp -------------------------------------------------------------------------------- /src/client-api/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/server.h -------------------------------------------------------------------------------- /src/client-api/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/settings.cpp -------------------------------------------------------------------------------- /src/client-api/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/settings.h -------------------------------------------------------------------------------- /src/client-api/sigma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/sigma.cpp -------------------------------------------------------------------------------- /src/client-api/sigma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/sigma.h -------------------------------------------------------------------------------- /src/client-api/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/wallet.cpp -------------------------------------------------------------------------------- /src/client-api/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/wallet.h -------------------------------------------------------------------------------- /src/client-api/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/client-api/zmqconfig.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/coin_containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/coin_containers.cpp -------------------------------------------------------------------------------- /src/coin_containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/coin_containers.h -------------------------------------------------------------------------------- /src/coincontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/coincontrol.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/compat/byteswap.h -------------------------------------------------------------------------------- /src/compat/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/compat/endian.h -------------------------------------------------------------------------------- /src/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibc_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/compat/glibc_sanity.cpp -------------------------------------------------------------------------------- /src/compat/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/compat/sanity.h -------------------------------------------------------------------------------- /src/compat/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/compat/strnlen.cpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/consensus/consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/consensus/consensus.h -------------------------------------------------------------------------------- /src/consensus/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/consensus/merkle.cpp -------------------------------------------------------------------------------- /src/consensus/merkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/consensus/merkle.h -------------------------------------------------------------------------------- /src/consensus/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/consensus/params.h -------------------------------------------------------------------------------- /src/consensus/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/consensus/validation.h -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/core_memusage.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/aes.cpp -------------------------------------------------------------------------------- /src/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/aes.h -------------------------------------------------------------------------------- /src/crypto/chacha20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/chacha20.cpp -------------------------------------------------------------------------------- /src/crypto/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/chacha20.h -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/ctaes/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/ctaes/COPYING -------------------------------------------------------------------------------- /src/crypto/ctaes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/ctaes/README.md -------------------------------------------------------------------------------- /src/crypto/ctaes/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/ctaes/bench.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/ctaes/ctaes.c -------------------------------------------------------------------------------- /src/crypto/ctaes/ctaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/ctaes/ctaes.h -------------------------------------------------------------------------------- /src/crypto/ctaes/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/ctaes/test.c -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/scrypt-sse2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/scrypt-sse2.cpp -------------------------------------------------------------------------------- /src/crypto/scrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/scrypt.cpp -------------------------------------------------------------------------------- /src/crypto/scrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/scrypt.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/Lyra2RE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/Lyra2RE.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/Lyra2RE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/Lyra2RE.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/blake.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/bmw.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/cubehash.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/echo.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/extra.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/extra.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/fugue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/fugue.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/groestl.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/hamsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/hamsi.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/haval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/haval.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/jh.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/keccak.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/luffa.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/lyra2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/lyra2.cpp -------------------------------------------------------------------------------- /src/crypto/x16Rv2/lyra2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/lyra2.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/sha2.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/shabal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/shabal.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/shavite.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/simd.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/skein.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/sph_bmw.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/sph_echo.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/sph_jh.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/sph_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/sph_sha2.c -------------------------------------------------------------------------------- /src/crypto/x16Rv2/sph_sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/sph_sha2.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/sph_simd.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/sponge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/sponge.cpp -------------------------------------------------------------------------------- /src/crypto/x16Rv2/sponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/sponge.h -------------------------------------------------------------------------------- /src/crypto/x16Rv2/tiger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/crypto/x16Rv2/tiger.cpp -------------------------------------------------------------------------------- /src/darksend-relay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/darksend-relay.cpp -------------------------------------------------------------------------------- /src/darksend-relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/darksend-relay.h -------------------------------------------------------------------------------- /src/darksend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/darksend.cpp -------------------------------------------------------------------------------- /src/darksend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/darksend.h -------------------------------------------------------------------------------- /src/dbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/dbwrapper.cpp -------------------------------------------------------------------------------- /src/dbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/dbwrapper.h -------------------------------------------------------------------------------- /src/definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/definition.h -------------------------------------------------------------------------------- /src/elysium/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/COPYING -------------------------------------------------------------------------------- /src/elysium/activation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/activation.cpp -------------------------------------------------------------------------------- /src/elysium/activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/activation.h -------------------------------------------------------------------------------- /src/elysium/consensushash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/consensushash.h -------------------------------------------------------------------------------- /src/elysium/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/convert.cpp -------------------------------------------------------------------------------- /src/elysium/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/convert.h -------------------------------------------------------------------------------- /src/elysium/createpayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/createpayload.h -------------------------------------------------------------------------------- /src/elysium/createtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/createtx.cpp -------------------------------------------------------------------------------- /src/elysium/createtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/createtx.h -------------------------------------------------------------------------------- /src/elysium/dex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/dex.cpp -------------------------------------------------------------------------------- /src/elysium/dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/dex.h -------------------------------------------------------------------------------- /src/elysium/doc/rpc-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/doc/rpc-api.md -------------------------------------------------------------------------------- /src/elysium/ecdsa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/ecdsa_context.h -------------------------------------------------------------------------------- /src/elysium/elysium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/elysium.cpp -------------------------------------------------------------------------------- /src/elysium/elysium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/elysium.h -------------------------------------------------------------------------------- /src/elysium/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/errors.h -------------------------------------------------------------------------------- /src/elysium/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/fees.cpp -------------------------------------------------------------------------------- /src/elysium/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/fees.h -------------------------------------------------------------------------------- /src/elysium/fetchwallettx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/fetchwallettx.h -------------------------------------------------------------------------------- /src/elysium/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/log.cpp -------------------------------------------------------------------------------- /src/elysium/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/log.h -------------------------------------------------------------------------------- /src/elysium/mdex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/mdex.cpp -------------------------------------------------------------------------------- /src/elysium/mdex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/mdex.h -------------------------------------------------------------------------------- /src/elysium/notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/notifications.h -------------------------------------------------------------------------------- /src/elysium/packetencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/packetencoder.h -------------------------------------------------------------------------------- /src/elysium/parse_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/parse_string.cpp -------------------------------------------------------------------------------- /src/elysium/parse_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/parse_string.h -------------------------------------------------------------------------------- /src/elysium/pending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/pending.cpp -------------------------------------------------------------------------------- /src/elysium/pending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/pending.h -------------------------------------------------------------------------------- /src/elysium/persistence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/persistence.cpp -------------------------------------------------------------------------------- /src/elysium/persistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/persistence.h -------------------------------------------------------------------------------- /src/elysium/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/property.cpp -------------------------------------------------------------------------------- /src/elysium/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/property.h -------------------------------------------------------------------------------- /src/elysium/rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpc.cpp -------------------------------------------------------------------------------- /src/elysium/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpc.h -------------------------------------------------------------------------------- /src/elysium/rpcpayload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpcpayload.cpp -------------------------------------------------------------------------------- /src/elysium/rpcpayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpcpayload.h -------------------------------------------------------------------------------- /src/elysium/rpcrawtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpcrawtx.cpp -------------------------------------------------------------------------------- /src/elysium/rpcrawtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpcrawtx.h -------------------------------------------------------------------------------- /src/elysium/rpctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpctx.cpp -------------------------------------------------------------------------------- /src/elysium/rpctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpctx.h -------------------------------------------------------------------------------- /src/elysium/rpctxobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpctxobject.cpp -------------------------------------------------------------------------------- /src/elysium/rpctxobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpctxobject.h -------------------------------------------------------------------------------- /src/elysium/rpcvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpcvalues.cpp -------------------------------------------------------------------------------- /src/elysium/rpcvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rpcvalues.h -------------------------------------------------------------------------------- /src/elysium/rules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rules.cpp -------------------------------------------------------------------------------- /src/elysium/rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/rules.h -------------------------------------------------------------------------------- /src/elysium/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/script.cpp -------------------------------------------------------------------------------- /src/elysium/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/script.h -------------------------------------------------------------------------------- /src/elysium/sigma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sigma.cpp -------------------------------------------------------------------------------- /src/elysium/sigma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sigma.h -------------------------------------------------------------------------------- /src/elysium/sigmadb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sigmadb.cpp -------------------------------------------------------------------------------- /src/elysium/sigmadb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sigmadb.h -------------------------------------------------------------------------------- /src/elysium/sigmawallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sigmawallet.cpp -------------------------------------------------------------------------------- /src/elysium/sigmawallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sigmawallet.h -------------------------------------------------------------------------------- /src/elysium/sigmawalletv0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sigmawalletv0.h -------------------------------------------------------------------------------- /src/elysium/sigmawalletv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sigmawalletv1.h -------------------------------------------------------------------------------- /src/elysium/sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sp.cpp -------------------------------------------------------------------------------- /src/elysium/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sp.h -------------------------------------------------------------------------------- /src/elysium/sto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sto.cpp -------------------------------------------------------------------------------- /src/elysium/sto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/sto.h -------------------------------------------------------------------------------- /src/elysium/tally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/tally.cpp -------------------------------------------------------------------------------- /src/elysium/tally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/tally.h -------------------------------------------------------------------------------- /src/elysium/test/utils_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/test/utils_tx.h -------------------------------------------------------------------------------- /src/elysium/tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/tx.cpp -------------------------------------------------------------------------------- /src/elysium/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/tx.h -------------------------------------------------------------------------------- /src/elysium/txprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/txprocessor.cpp -------------------------------------------------------------------------------- /src/elysium/txprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/txprocessor.h -------------------------------------------------------------------------------- /src/elysium/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/utils.cpp -------------------------------------------------------------------------------- /src/elysium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/utils.h -------------------------------------------------------------------------------- /src/elysium/utilsbitcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/utilsbitcoin.cpp -------------------------------------------------------------------------------- /src/elysium/utilsbitcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/utilsbitcoin.h -------------------------------------------------------------------------------- /src/elysium/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/version.cpp -------------------------------------------------------------------------------- /src/elysium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/version.h -------------------------------------------------------------------------------- /src/elysium/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/wallet.cpp -------------------------------------------------------------------------------- /src/elysium/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/wallet.h -------------------------------------------------------------------------------- /src/elysium/walletcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/walletcache.cpp -------------------------------------------------------------------------------- /src/elysium/walletcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/walletcache.h -------------------------------------------------------------------------------- /src/elysium/walletmodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/walletmodels.cpp -------------------------------------------------------------------------------- /src/elysium/walletmodels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/walletmodels.h -------------------------------------------------------------------------------- /src/elysium/wallettxs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/wallettxs.cpp -------------------------------------------------------------------------------- /src/elysium/wallettxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/elysium/wallettxs.h -------------------------------------------------------------------------------- /src/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/fixed.h -------------------------------------------------------------------------------- /src/flat-database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/flat-database.h -------------------------------------------------------------------------------- /src/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/fs.cpp -------------------------------------------------------------------------------- /src/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/fs.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/hdmint/hdmint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hdmint/hdmint.cpp -------------------------------------------------------------------------------- /src/hdmint/hdmint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hdmint/hdmint.h -------------------------------------------------------------------------------- /src/hdmint/mintpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hdmint/mintpool.cpp -------------------------------------------------------------------------------- /src/hdmint/mintpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hdmint/mintpool.h -------------------------------------------------------------------------------- /src/hdmint/tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hdmint/tracker.cpp -------------------------------------------------------------------------------- /src/hdmint/tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hdmint/tracker.h -------------------------------------------------------------------------------- /src/hdmint/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hdmint/wallet.cpp -------------------------------------------------------------------------------- /src/hdmint/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/hdmint/wallet.h -------------------------------------------------------------------------------- /src/httprpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/httprpc.cpp -------------------------------------------------------------------------------- /src/httprpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/httprpc.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/indexnode-payments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnode-payments.cpp -------------------------------------------------------------------------------- /src/indexnode-payments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnode-payments.h -------------------------------------------------------------------------------- /src/indexnode-sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnode-sync.cpp -------------------------------------------------------------------------------- /src/indexnode-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnode-sync.h -------------------------------------------------------------------------------- /src/indexnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnode.cpp -------------------------------------------------------------------------------- /src/indexnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnode.h -------------------------------------------------------------------------------- /src/indexnodeconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnodeconfig.cpp -------------------------------------------------------------------------------- /src/indexnodeconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnodeconfig.h -------------------------------------------------------------------------------- /src/indexnodeman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnodeman.cpp -------------------------------------------------------------------------------- /src/indexnodeman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indexnodeman.h -------------------------------------------------------------------------------- /src/indirectmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/indirectmap.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/init.h -------------------------------------------------------------------------------- /src/instantx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/instantx.cpp -------------------------------------------------------------------------------- /src/instantx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/instantx.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/key.h -------------------------------------------------------------------------------- /src/keystore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/keystore.cpp -------------------------------------------------------------------------------- /src/keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/keystore.h -------------------------------------------------------------------------------- /src/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/.gitignore -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/Makefile -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/README -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/TODO -------------------------------------------------------------------------------- /src/leveldb/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/WINDOWS.md -------------------------------------------------------------------------------- /src/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/db_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/db_bench.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/log_format.h -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/log_reader.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/log_writer.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/db/table_cache.h -------------------------------------------------------------------------------- /src/leveldb/doc/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/doc/doc.css -------------------------------------------------------------------------------- /src/leveldb/doc/impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/doc/impl.html -------------------------------------------------------------------------------- /src/leveldb/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/port/README -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/libexecstream/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/libexecstream/README -------------------------------------------------------------------------------- /src/libzerocoin/Coin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/libzerocoin/Coin.cpp -------------------------------------------------------------------------------- /src/libzerocoin/Coin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/libzerocoin/Coin.h -------------------------------------------------------------------------------- /src/libzerocoin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/libzerocoin/LICENSE -------------------------------------------------------------------------------- /src/libzerocoin/Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/libzerocoin/Params.h -------------------------------------------------------------------------------- /src/libzerocoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/libzerocoin/README.md -------------------------------------------------------------------------------- /src/libzerocoin/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/libzerocoin/Tests.cpp -------------------------------------------------------------------------------- /src/limitedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/limitedmap.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/main.h -------------------------------------------------------------------------------- /src/mbstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/mbstring.cpp -------------------------------------------------------------------------------- /src/mbstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/mbstring.h -------------------------------------------------------------------------------- /src/memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/memusage.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/miner.cpp -------------------------------------------------------------------------------- /src/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/miner.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/net.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/netfulfilledman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/netfulfilledman.cpp -------------------------------------------------------------------------------- /src/netfulfilledman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/netfulfilledman.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/obj-test/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/policy/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/policy/fees.cpp -------------------------------------------------------------------------------- /src/policy/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/policy/fees.h -------------------------------------------------------------------------------- /src/policy/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/policy/policy.cpp -------------------------------------------------------------------------------- /src/policy/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/policy/policy.h -------------------------------------------------------------------------------- /src/policy/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/policy/rbf.cpp -------------------------------------------------------------------------------- /src/policy/rbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/policy/rbf.h -------------------------------------------------------------------------------- /src/pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/pos.cpp -------------------------------------------------------------------------------- /src/pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/pos.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/prevector.h -------------------------------------------------------------------------------- /src/primitives/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/primitives/block.cpp -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/primitives/zerocoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/primitives/zerocoin.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/addressbookpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/addressbookpage.h -------------------------------------------------------------------------------- /src/qt/bantablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bantablemodel.cpp -------------------------------------------------------------------------------- /src/qt/bantablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bantablemodel.h -------------------------------------------------------------------------------- /src/qt/bitcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bitcoin.cpp -------------------------------------------------------------------------------- /src/qt/bitcoin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bitcoin.qrc -------------------------------------------------------------------------------- /src/qt/bitcoin_locale.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bitcoin_locale.qrc -------------------------------------------------------------------------------- /src/qt/bitcoingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bitcoingui.cpp -------------------------------------------------------------------------------- /src/qt/bitcoingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bitcoingui.h -------------------------------------------------------------------------------- /src/qt/bitcoinstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bitcoinstrings.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bitcoinunits.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/bitcoinunits.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/csvmodelwriter.cpp -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/elyassetsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/elyassetsdialog.h -------------------------------------------------------------------------------- /src/qt/elysium_qtutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/elysium_qtutils.h -------------------------------------------------------------------------------- /src/qt/forms/intro.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/forms/intro.ui -------------------------------------------------------------------------------- /src/qt/forms/recover.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/forms/recover.ui -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/indexnodelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/indexnodelist.cpp -------------------------------------------------------------------------------- /src/qt/indexnodelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/indexnodelist.h -------------------------------------------------------------------------------- /src/qt/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/intro.cpp -------------------------------------------------------------------------------- /src/qt/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/intro.h -------------------------------------------------------------------------------- /src/qt/lookupspdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/lookupspdialog.cpp -------------------------------------------------------------------------------- /src/qt/lookupspdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/lookupspdialog.h -------------------------------------------------------------------------------- /src/qt/lookuptxdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/lookuptxdialog.cpp -------------------------------------------------------------------------------- /src/qt/lookuptxdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/lookuptxdialog.h -------------------------------------------------------------------------------- /src/qt/manualmintdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/manualmintdialog.h -------------------------------------------------------------------------------- /src/qt/metadexdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/metadexdialog.cpp -------------------------------------------------------------------------------- /src/qt/metadexdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/metadexdialog.h -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/notifymnemonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/notifymnemonic.cpp -------------------------------------------------------------------------------- /src/qt/notifymnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/notifymnemonic.h -------------------------------------------------------------------------------- /src/qt/openuridialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/openuridialog.cpp -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/optionsdialog.cpp -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/paymentserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/paymentserver.cpp -------------------------------------------------------------------------------- /src/qt/paymentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/paymentserver.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/peertablemodel.cpp -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/platformstyle.cpp -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/qvaluecombobox.cpp -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/recover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/recover.cpp -------------------------------------------------------------------------------- /src/qt/recover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/recover.h -------------------------------------------------------------------------------- /src/qt/res/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/icons/add.png -------------------------------------------------------------------------------- /src/qt/res/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/icons/edit.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/icons/eye.png -------------------------------------------------------------------------------- /src/qt/res/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/icons/info.png -------------------------------------------------------------------------------- /src/qt/res/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/icons/key.png -------------------------------------------------------------------------------- /src/qt/res/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/icons/open.png -------------------------------------------------------------------------------- /src/qt/res/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/icons/quit.png -------------------------------------------------------------------------------- /src/qt/res/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/icons/send.png -------------------------------------------------------------------------------- /src/qt/res/src/mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/src/mine.svg -------------------------------------------------------------------------------- /src/qt/res/src/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/src/qt.svg -------------------------------------------------------------------------------- /src/qt/res/src/tx_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/src/tx_in.svg -------------------------------------------------------------------------------- /src/qt/res/src/verify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/res/src/verify.svg -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/sendcoinsdialog.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/sendcoinsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/sendmpdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/sendmpdialog.cpp -------------------------------------------------------------------------------- /src/qt/sendmpdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/sendmpdialog.h -------------------------------------------------------------------------------- /src/qt/sigmadialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/sigmadialog.cpp -------------------------------------------------------------------------------- /src/qt/sigmadialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/sigmadialog.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/test/compattests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/test/compattests.h -------------------------------------------------------------------------------- /src/qt/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/test/test_main.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/test/uritests.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/tor -------------------------------------------------------------------------------- /src/qt/transactiondesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/transactiondesc.h -------------------------------------------------------------------------------- /src/qt/transactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/transactionview.h -------------------------------------------------------------------------------- /src/qt/txhistorydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/txhistorydialog.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/utilitydialog.cpp -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/qt/zc2sigmamodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/zc2sigmamodel.cpp -------------------------------------------------------------------------------- /src/qt/zc2sigmamodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/zc2sigmamodel.h -------------------------------------------------------------------------------- /src/qt/zc2sigmapage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/zc2sigmapage.cpp -------------------------------------------------------------------------------- /src/qt/zc2sigmapage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/zc2sigmapage.h -------------------------------------------------------------------------------- /src/qt/zerocoinpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/zerocoinpage.cpp -------------------------------------------------------------------------------- /src/qt/zerocoinpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/qt/zerocoinpage.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/random.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverselock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/reverselock.h -------------------------------------------------------------------------------- /src/rpc/blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/blockchain.cpp -------------------------------------------------------------------------------- /src/rpc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/client.cpp -------------------------------------------------------------------------------- /src/rpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/client.h -------------------------------------------------------------------------------- /src/rpc/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/mining.cpp -------------------------------------------------------------------------------- /src/rpc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/misc.cpp -------------------------------------------------------------------------------- /src/rpc/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/net.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/protocol.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/protocol.h -------------------------------------------------------------------------------- /src/rpc/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/register.h -------------------------------------------------------------------------------- /src/rpc/rpcindexnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/rpcindexnode.cpp -------------------------------------------------------------------------------- /src/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/server.cpp -------------------------------------------------------------------------------- /src/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/rpc/server.h -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/script/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/interpreter.h -------------------------------------------------------------------------------- /src/script/ismine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/ismine.cpp -------------------------------------------------------------------------------- /src/script/ismine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/ismine.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/script_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/script_error.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/standard.cpp -------------------------------------------------------------------------------- /src/script/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/script/standard.h -------------------------------------------------------------------------------- /src/secp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/.gitignore -------------------------------------------------------------------------------- /src/secp256k1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/.travis.yml -------------------------------------------------------------------------------- /src/secp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/COPYING -------------------------------------------------------------------------------- /src/secp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/Makefile.am -------------------------------------------------------------------------------- /src/secp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/README.md -------------------------------------------------------------------------------- /src/secp256k1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/TODO -------------------------------------------------------------------------------- /src/secp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /src/secp256k1/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/secp256k1/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/src/bench.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/src/eckey.h -------------------------------------------------------------------------------- /src/secp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/src/field.h -------------------------------------------------------------------------------- /src/secp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/src/group.h -------------------------------------------------------------------------------- /src/secp256k1/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/src/hash.h -------------------------------------------------------------------------------- /src/secp256k1/src/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/src/num.h -------------------------------------------------------------------------------- /src/secp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/src/tests.c -------------------------------------------------------------------------------- /src/secp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/secp256k1/src/util.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/sigma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma.cpp -------------------------------------------------------------------------------- /src/sigma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma.h -------------------------------------------------------------------------------- /src/sigma/coin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma/coin.cpp -------------------------------------------------------------------------------- /src/sigma/coin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma/coin.h -------------------------------------------------------------------------------- /src/sigma/coinspend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma/coinspend.cpp -------------------------------------------------------------------------------- /src/sigma/coinspend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma/coinspend.h -------------------------------------------------------------------------------- /src/sigma/params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma/params.cpp -------------------------------------------------------------------------------- /src/sigma/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma/params.h -------------------------------------------------------------------------------- /src/sigma/r1_proof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma/r1_proof.h -------------------------------------------------------------------------------- /src/sigma/remint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma/remint.cpp -------------------------------------------------------------------------------- /src/sigma/remint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sigma/remint.h -------------------------------------------------------------------------------- /src/spentindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/spentindex.h -------------------------------------------------------------------------------- /src/spork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/spork.cpp -------------------------------------------------------------------------------- /src/spork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/spork.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/support/cleanse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/support/cleanse.cpp -------------------------------------------------------------------------------- /src/support/cleanse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/support/cleanse.h -------------------------------------------------------------------------------- /src/support/pagelocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/support/pagelocker.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/DoS_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/DoS_tests.cpp -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/amount_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/amount_tests.cpp -------------------------------------------------------------------------------- /src/test/base32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/base32_tests.cpp -------------------------------------------------------------------------------- /src/test/base58_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/base58_tests.cpp -------------------------------------------------------------------------------- /src/test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/base64_tests.cpp -------------------------------------------------------------------------------- /src/test/bctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/bctest.py -------------------------------------------------------------------------------- /src/test/bip32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/bip32_tests.cpp -------------------------------------------------------------------------------- /src/test/bloom_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/bloom_tests.cpp -------------------------------------------------------------------------------- /src/test/bswap_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/bswap_tests.cpp -------------------------------------------------------------------------------- /src/test/buildenv.py.in: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | exeext="@EXEEXT@" 3 | -------------------------------------------------------------------------------- /src/test/coins_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/coins_tests.cpp -------------------------------------------------------------------------------- /src/test/crypto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/crypto_tests.cpp -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/data/blanktx.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/data/blanktx.hex -------------------------------------------------------------------------------- /src/test/fixtures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/fixtures.cpp -------------------------------------------------------------------------------- /src/test/fixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/fixtures.h -------------------------------------------------------------------------------- /src/test/getarg_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/getarg_tests.cpp -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/hdmint_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/hdmint_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/main_tests.cpp -------------------------------------------------------------------------------- /src/test/merkle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/merkle_tests.cpp -------------------------------------------------------------------------------- /src/test/miner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/miner_tests.cpp -------------------------------------------------------------------------------- /src/test/net_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/net_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/pow_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/pow_tests.cpp -------------------------------------------------------------------------------- /src/test/remint_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/remint_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/sanity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/sanity_tests.cpp -------------------------------------------------------------------------------- /src/test/script_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/script_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/scriptnum10.h -------------------------------------------------------------------------------- /src/test/test_bitcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/test_bitcoin.cpp -------------------------------------------------------------------------------- /src/test/test_bitcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/test_bitcoin.h -------------------------------------------------------------------------------- /src/test/testutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/testutil.cpp -------------------------------------------------------------------------------- /src/test/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/testutil.h -------------------------------------------------------------------------------- /src/test/txdb_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/txdb_tests.cpp -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/threadinterrupt.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/threadinterrupt.h -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/tor/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/.editorconfig -------------------------------------------------------------------------------- /src/tor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/.gitignore -------------------------------------------------------------------------------- /src/tor/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/.gitlab-ci.yml -------------------------------------------------------------------------------- /src/tor/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/.gitmodules -------------------------------------------------------------------------------- /src/tor/CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /src/tor/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/CONTRIBUTING -------------------------------------------------------------------------------- /src/tor/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/ChangeLog -------------------------------------------------------------------------------- /src/tor/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/Doxyfile.in -------------------------------------------------------------------------------- /src/tor/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/INSTALL -------------------------------------------------------------------------------- /src/tor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/LICENSE -------------------------------------------------------------------------------- /src/tor/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/Makefile.am -------------------------------------------------------------------------------- /src/tor/Makefile.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/Makefile.nmake -------------------------------------------------------------------------------- /src/tor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/README -------------------------------------------------------------------------------- /src/tor/ReleaseNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/ReleaseNotes -------------------------------------------------------------------------------- /src/tor/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/acinclude.m4 -------------------------------------------------------------------------------- /src/tor/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/autogen.sh -------------------------------------------------------------------------------- /src/tor/changes/bug30189: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/changes/bug30189 -------------------------------------------------------------------------------- /src/tor/changes/bug30316: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/changes/bug30316 -------------------------------------------------------------------------------- /src/tor/changes/bug30452: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/changes/bug30452 -------------------------------------------------------------------------------- /src/tor/changes/bug30475: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/changes/bug30475 -------------------------------------------------------------------------------- /src/tor/changes/bug30713: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/changes/bug30713 -------------------------------------------------------------------------------- /src/tor/changes/bug30744: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/changes/bug30744 -------------------------------------------------------------------------------- /src/tor/config.rust.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/config.rust.in -------------------------------------------------------------------------------- /src/tor/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/configure.ac -------------------------------------------------------------------------------- /src/tor/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/contrib/README -------------------------------------------------------------------------------- /src/tor/doc/TUNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/doc/TUNING -------------------------------------------------------------------------------- /src/tor/doc/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/doc/include.am -------------------------------------------------------------------------------- /src/tor/doc/tor.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/doc/tor.1.txt -------------------------------------------------------------------------------- /src/tor/doc/torify.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/doc/torify.1.txt -------------------------------------------------------------------------------- /src/tor/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/m4/pkg.m4 -------------------------------------------------------------------------------- /src/tor/scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/scripts/README -------------------------------------------------------------------------------- /src/tor/src/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/config/README -------------------------------------------------------------------------------- /src/tor/src/config/geoip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/config/geoip -------------------------------------------------------------------------------- /src/tor/src/config/geoip6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/config/geoip6 -------------------------------------------------------------------------------- /src/tor/src/core/or/dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/core/or/dos.c -------------------------------------------------------------------------------- /src/tor/src/core/or/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/core/or/dos.h -------------------------------------------------------------------------------- /src/tor/src/core/or/or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/core/or/or.h -------------------------------------------------------------------------------- /src/tor/src/ext/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/ext/README -------------------------------------------------------------------------------- /src/tor/src/ext/ed25519/donna/fuzz/ed25519-donna.c: -------------------------------------------------------------------------------- 1 | #include "../ed25519.c" 2 | -------------------------------------------------------------------------------- /src/tor/src/ext/ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/ext/ht.h -------------------------------------------------------------------------------- /src/tor/src/ext/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/ext/siphash.h -------------------------------------------------------------------------------- /src/tor/src/ext/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/ext/strlcat.c -------------------------------------------------------------------------------- /src/tor/src/ext/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/ext/strlcpy.c -------------------------------------------------------------------------------- /src/tor/src/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/include.am -------------------------------------------------------------------------------- /src/tor/src/lib/arch/.may_include: -------------------------------------------------------------------------------- 1 | orconfig.h 2 | lib/cc/*.h 3 | -------------------------------------------------------------------------------- /src/tor/src/lib/arch/include.am: -------------------------------------------------------------------------------- 1 | 2 | noinst_HEADERS += \ 3 | src/lib/arch/bytes.h 4 | -------------------------------------------------------------------------------- /src/tor/src/lib/cc/.may_include: -------------------------------------------------------------------------------- 1 | orconfig.h 2 | lib/cc/*.h -------------------------------------------------------------------------------- /src/tor/src/lib/defs/.may_include: -------------------------------------------------------------------------------- 1 | orconfig.h 2 | -------------------------------------------------------------------------------- /src/tor/src/lib/fs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/fs/dir.c -------------------------------------------------------------------------------- /src/tor/src/lib/fs/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/fs/dir.h -------------------------------------------------------------------------------- /src/tor/src/lib/fs/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/fs/mmap.c -------------------------------------------------------------------------------- /src/tor/src/lib/fs/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/fs/mmap.h -------------------------------------------------------------------------------- /src/tor/src/lib/fs/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/fs/path.c -------------------------------------------------------------------------------- /src/tor/src/lib/fs/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/fs/path.h -------------------------------------------------------------------------------- /src/tor/src/lib/log/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/log/log.c -------------------------------------------------------------------------------- /src/tor/src/lib/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/log/log.h -------------------------------------------------------------------------------- /src/tor/src/lib/math/fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/math/fp.c -------------------------------------------------------------------------------- /src/tor/src/lib/math/fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/lib/math/fp.h -------------------------------------------------------------------------------- /src/tor/src/lib/subsys/.may_include: -------------------------------------------------------------------------------- 1 | orconfig.h 2 | -------------------------------------------------------------------------------- /src/tor/src/lib/testsupport/.may_include: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tor/src/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/rust/build.rs -------------------------------------------------------------------------------- /src/tor/src/test/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/test/bench.c -------------------------------------------------------------------------------- /src/tor/src/test/rust_supp.txt: -------------------------------------------------------------------------------- 1 | leak:backtrace_alloc 2 | -------------------------------------------------------------------------------- /src/tor/src/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/test/test.c -------------------------------------------------------------------------------- /src/tor/src/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/tor/src/test/test.h -------------------------------------------------------------------------------- /src/tor/src/win32/include.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST+= src/win32/orconfig.h 3 | 4 | -------------------------------------------------------------------------------- /src/tor/warning_flags.in: -------------------------------------------------------------------------------- 1 | @TOR_WARNING_FLAGS@ -------------------------------------------------------------------------------- /src/torcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/torcontrol.cpp -------------------------------------------------------------------------------- /src/torcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/torcontrol.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/ui_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/ui_interface.cpp -------------------------------------------------------------------------------- /src/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/ui_interface.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/univalue/.gitignore -------------------------------------------------------------------------------- /src/univalue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/univalue/.travis.yml -------------------------------------------------------------------------------- /src/univalue/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/univalue/COPYING -------------------------------------------------------------------------------- /src/univalue/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/univalue/Makefile.am -------------------------------------------------------------------------------- /src/univalue/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/univalue/README -------------------------------------------------------------------------------- /src/univalue/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/univalue/TODO -------------------------------------------------------------------------------- /src/univalue/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/univalue/autogen.sh -------------------------------------------------------------------------------- /src/univalue/build-aux/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /*.m4 2 | -------------------------------------------------------------------------------- /src/univalue/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/univalue/configure.ac -------------------------------------------------------------------------------- /src/univalue/gen/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/univalue/gen/gen.cpp -------------------------------------------------------------------------------- /src/univalue/lib/.gitignore: -------------------------------------------------------------------------------- 1 | gen 2 | .libs 3 | -------------------------------------------------------------------------------- /src/univalue/test/.gitignore: -------------------------------------------------------------------------------- 1 | unitester 2 | 3 | *.trs 4 | *.log 5 | -------------------------------------------------------------------------------- /src/univalue/test/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /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/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/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/util.h -------------------------------------------------------------------------------- /src/utilmoneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/utilmoneystr.cpp -------------------------------------------------------------------------------- /src/utilmoneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/utilmoneystr.h -------------------------------------------------------------------------------- /src/utilstrencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/utilstrencodings.cpp -------------------------------------------------------------------------------- /src/utilstrencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/utilstrencodings.h -------------------------------------------------------------------------------- /src/utiltime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/utiltime.cpp -------------------------------------------------------------------------------- /src/utiltime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/utiltime.h -------------------------------------------------------------------------------- /src/validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/validation.cpp -------------------------------------------------------------------------------- /src/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/validation.h -------------------------------------------------------------------------------- /src/validationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/validationinterface.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/version.h -------------------------------------------------------------------------------- /src/versionbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/versionbits.cpp -------------------------------------------------------------------------------- /src/versionbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/versionbits.h -------------------------------------------------------------------------------- /src/wallet/authhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/authhelper.cpp -------------------------------------------------------------------------------- /src/wallet/authhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/authhelper.h -------------------------------------------------------------------------------- /src/wallet/bip39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/bip39.cpp -------------------------------------------------------------------------------- /src/wallet/bip39.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/bip39.h -------------------------------------------------------------------------------- /src/wallet/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/crypter.cpp -------------------------------------------------------------------------------- /src/wallet/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/crypter.h -------------------------------------------------------------------------------- /src/wallet/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/db.cpp -------------------------------------------------------------------------------- /src/wallet/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/db.h -------------------------------------------------------------------------------- /src/wallet/rpcdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/rpcdump.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/rpcwallet.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/rpcwallet.h -------------------------------------------------------------------------------- /src/wallet/txbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/txbuilder.cpp -------------------------------------------------------------------------------- /src/wallet/txbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/txbuilder.h -------------------------------------------------------------------------------- /src/wallet/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/wallet.cpp -------------------------------------------------------------------------------- /src/wallet/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/wallet.h -------------------------------------------------------------------------------- /src/wallet/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/walletdb.cpp -------------------------------------------------------------------------------- /src/wallet/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/walletdb.h -------------------------------------------------------------------------------- /src/wallet/walletexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/wallet/walletexcept.h -------------------------------------------------------------------------------- /src/zerocoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/zerocoin.cpp -------------------------------------------------------------------------------- /src/zerocoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/zerocoin.h -------------------------------------------------------------------------------- /src/zerocoin_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/zerocoin_params.h -------------------------------------------------------------------------------- /src/zmq/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/zmq/zmqconfig.h -------------------------------------------------------------------------------- /src/zmqserver/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/src/zmqserver/zmqconfig.h -------------------------------------------------------------------------------- /testgitian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndexChain/Index/HEAD/testgitian.sh -------------------------------------------------------------------------------- /torsetting.dat: -------------------------------------------------------------------------------- 1 | 1 --------------------------------------------------------------------------------