├── COPYING ├── INSTALL ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── contrib ├── README.md ├── axel-blockchain-enhancement │ ├── README.md │ ├── demo-testnet.md │ ├── demo-testnet.png │ ├── package.json │ ├── rpc.js │ ├── send.js │ ├── show.js │ ├── sign-file.js │ └── verify-file.js ├── axel-qt.pro ├── axeld.bash-completion ├── bitrpc │ ├── README.md │ └── bitrpc.py ├── debian │ ├── README.md │ ├── axel-qt.desktop │ ├── axel-qt.install │ ├── axel-qt.lintian-overrides │ ├── axel-qt.protocol │ ├── axeld.bash-completion │ ├── axeld.examples │ ├── axeld.install │ ├── axeld.lintian-overrides │ ├── axeld.manpages │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── examples │ │ └── axel.conf │ ├── gbp.conf │ ├── patches │ │ ├── README │ │ └── series │ ├── rules │ ├── source │ │ └── format │ └── watch ├── devtools │ ├── README.md │ ├── check-doc.py │ ├── fix-copyright-headers.py │ ├── github-merge.py │ ├── logprint-scanner.py │ ├── split-debug.sh.in │ ├── symbol-check.py │ └── update-translations.py ├── gitian-build.sh ├── gitian-descriptors │ ├── README.md │ ├── gitian-aarch64.yml │ ├── gitian-linux.yml │ ├── gitian-osx-signer.yml │ ├── gitian-osx.yml │ ├── gitian-win-signer.yml │ └── gitian-win.yml ├── init │ ├── README.md │ ├── axeld.conf │ ├── axeld.init │ ├── axeld.openrc │ ├── axeld.openrcconf │ └── axeld.service ├── linearize │ ├── README.md │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── LICENSE │ ├── README.md │ ├── background.svg │ ├── boostlib │ │ ├── libboost_chrono-mt.dylib │ │ ├── libboost_filesystem.dylib │ │ ├── libboost_program_options-mt.dylib │ │ ├── libboost_system-mt.dylib │ │ ├── libboost_system.dylib │ │ └── libboost_thread-mt.dylib │ ├── custom_dsstore.py │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── fancy.plist │ ├── macdeployqtplus │ ├── patchAllQtFramework.sh │ └── patchQtFramework.sh ├── qos │ ├── README.md │ └── tc.sh ├── qt_translations.py ├── seeds │ ├── README.md │ ├── generate-seeds.py │ └── makeseeds.py ├── spendfrom │ ├── README.md │ ├── setup.py │ └── spendfrom.py ├── test-patches │ └── README.md ├── testgen │ ├── README.md │ ├── base58.py │ └── gen_base58_test_vectors.py ├── tidy_datadir.sh ├── verifysfbinaries │ ├── README.md │ └── verify.sh └── zmq │ └── zmq_sub.py ├── depends ├── 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 │ ├── native_biplist.mk │ ├── native_ccache.mk │ ├── native_cctools.mk │ ├── native_cdrkit.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 │ ├── xcb_proto.mk │ ├── xextproto.mk │ ├── xproto.mk │ ├── xtrans.mk │ ├── zeromq.mk │ └── zlib.mk └── patches │ ├── boost │ ├── darwin_boost_atomic-1.patch │ └── darwin_boost_atomic-2.patch │ ├── native_biplist │ └── sorted_list.patch │ ├── native_cdrkit │ └── cdrkit-deterministic.patch │ ├── native_mac_alias │ └── python3.patch │ ├── qt │ ├── aarch32-qmake.conf │ ├── aarch64-qmake.conf │ ├── fix-xcb-include-order.patch │ ├── fix_qt_pkgconfig.patch │ ├── mac-qmake.conf │ ├── mingw-uuidof.patch │ └── pidlist_absolute.patch │ ├── qt46 │ └── stlfix.patch │ ├── xextproto │ └── fix_aarch64_build.patch │ └── zeromq │ ├── 9114d3957725acd34aa8b8d011585812f3369411.patch │ └── 9e6745c12e0b100cd38acecc16ce7db02905e27c.patch ├── doc ├── Doxyfile ├── POW.png ├── README.md ├── README_osx.md ├── README_windows.md ├── README_windows.txt ├── REST-interface.md ├── assets-attribution.md ├── axel │ └── 2020-07-21 AXEL Wallet User Agreement.pdf ├── bitcoin_logo_doxygen.png ├── build-osx.md ├── build-unix.md ├── build-windows.md ├── build_centos7.md ├── data-storage-corruption.md ├── developer-notes.md ├── dnsseed-policy.md ├── dump_import.md ├── files.md ├── gitian-building.md ├── gitian-building │ ├── create_vm_file_location_size.png │ ├── create_vm_hard_drive.png │ ├── create_vm_hard_drive_file_type.png │ ├── create_vm_memsize.png │ ├── create_vm_page1.png │ ├── create_vm_storage_physical_hard_drive.png │ ├── debian_install_10_configure_clock.png │ ├── debian_install_11_partition_disks.png │ ├── debian_install_12_choose_disk.png │ ├── debian_install_13_partition_scheme.png │ ├── debian_install_14_finish.png │ ├── debian_install_15_write_changes.png │ ├── debian_install_16_choose_a_mirror.png │ ├── debian_install_17_choose_a_mirror2.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_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 │ ├── network_settings.png │ ├── port_forwarding_rules.png │ └── select_startup_disk.png ├── img │ ├── bootstrap1.png │ ├── bootstrap2.png │ ├── bootstrap4.png │ └── bootstrap5.png ├── init.md ├── masternode_conf.md ├── multiwallet-qt.md ├── pivx-doc │ ├── Doxyfile │ ├── README.md │ ├── README_osx.md │ ├── README_windows.txt │ ├── REST-interface.md │ ├── assets-attribution.md │ ├── bitcoin_logo_doxygen.png │ ├── bootstrap.md │ ├── build-osx.md │ ├── build-unix.md │ ├── developer-notes.md │ ├── dnsseed-policy.md │ ├── files.md │ ├── gitian-building.md │ ├── gitian-building │ │ ├── create_vm_file_location_size.png │ │ ├── create_vm_hard_drive.png │ │ ├── create_vm_hard_drive_file_type.png │ │ ├── create_vm_memsize.png │ │ ├── create_vm_page1.png │ │ ├── create_vm_storage_physical_hard_drive.png │ │ ├── debian_install_10_configure_clock.png │ │ ├── debian_install_11_partition_disks.png │ │ ├── debian_install_12_choose_disk.png │ │ ├── debian_install_13_partition_scheme.png │ │ ├── debian_install_14_finish.png │ │ ├── debian_install_15_write_changes.png │ │ ├── debian_install_16_choose_a_mirror.png │ │ ├── debian_install_17_choose_a_mirror2.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_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 │ │ ├── network_settings.png │ │ ├── port_forwarding_rules.png │ │ └── select_startup_disk.png │ ├── guide-startmany.md │ ├── img │ │ ├── bootstrap1.png │ │ ├── bootstrap2.png │ │ ├── bootstrap4.png │ │ └── bootstrap5.png │ ├── init.md │ ├── masternode-budget.md │ ├── masternode_conf.md │ ├── multiwallet-qt.md │ ├── release-notes.md │ ├── release-notes │ │ ├── release-notes-2.1.5.md │ │ ├── release-notes-2.1.6.md │ │ ├── release-notes-2.1.7.md │ │ ├── release-notes-2.2.0.md │ │ ├── release-notes-2.2.1.md │ │ ├── release-notes-2.3.0.md │ │ ├── release-notes-3.0.4.md │ │ ├── release-notes-3.0.5.1.md │ │ ├── release-notes-3.0.5.md │ │ ├── release-notes-3.0.6.md │ │ ├── release-notes-3.1.0.1.md │ │ └── release-notes-3.1.0.md │ ├── release-process.md │ ├── swifttx.md │ ├── tor.md │ ├── translation_process.md │ ├── travis-ci.txt │ ├── unit-tests.md │ └── zmq.md ├── release-notes.md ├── release-process.md ├── swifttx.md ├── tor.md ├── travis-ci.txt ├── unit-tests.md └── zmq.md ├── pkg.m4 ├── qa ├── pull-tester │ ├── rpc-tests.sh │ ├── run-bitcoin-cli │ ├── run-bitcoind-for-test.sh.in │ └── tests-config.sh.in └── rpc-tests │ ├── README.md │ ├── bipdersig.py │ ├── conflictedbalance.sh │ ├── forknotify.py │ ├── getblocktemplate_longpoll.py │ ├── getblocktemplate_proposals.py │ ├── getchaintips.py │ ├── httpbasics.py │ ├── invalidateblock.py │ ├── keypool.py │ ├── listtransactions.py │ ├── mempool_coinbase_spends.py │ ├── mempool_resurrect_test.py │ ├── mempool_spendcoinbase.py │ ├── netutil.py │ ├── proxy_test.py │ ├── python-bitcoinrpc │ ├── bitcoinrpc │ │ ├── __init__.py │ │ └── authproxy.py │ └── setup.py │ ├── receivedby.py │ ├── reindex.py │ ├── rest.py │ ├── rpcbind_test.py │ ├── send.sh │ ├── smartfees.py │ ├── socks5.py │ ├── test_framework.py │ ├── txn_doublespend.py │ ├── util.py │ ├── util.sh │ ├── wallet.py │ ├── walletbackup.py │ ├── zapwallettxes.sh │ └── zmq_test.py ├── share ├── certs │ ├── BitcoinFoundation_Apple_Cert.pem │ ├── BitcoinFoundation_Comodo_Cert.pem │ └── PrivateKeyNotes.md ├── genbuild.sh ├── pixmaps │ ├── addressbook16.bmp │ ├── addressbook16mask.bmp │ ├── addressbook20.bmp │ ├── addressbook20mask.bmp │ ├── axel.ico │ ├── axel128.png │ ├── axel128.xpm │ ├── axel16.png │ ├── axel16.xpm │ ├── axel256.png │ ├── axel256.xpm │ ├── axel32.png │ ├── axel32.xpm │ ├── axel64.png │ ├── axel64.xpm │ ├── check.ico │ ├── favicon.ico │ ├── nsis-header.bmp │ ├── nsis-wizard.bmp │ ├── send16.bmp │ ├── send16mask.bmp │ ├── send16masknoshadow.bmp │ ├── send20.bmp │ └── send20mask.bmp ├── qt │ ├── Info.plist.in │ ├── extract_strings_qt.py │ ├── img │ │ ├── reload.png │ │ └── reload.xcf │ ├── make_spinner.py │ ├── make_windows_icon.sh │ └── protobuf.pri ├── setup.nsi.in └── ui.rc ├── src ├── .clang-format ├── Makefile.am ├── Makefile.leveldb.include ├── Makefile.qt.include ├── Makefile.qttest.include ├── Makefile.test.include ├── activemasternode.cpp ├── activemasternode.h ├── addrman.cpp ├── addrman.h ├── alert.cpp ├── alert.h ├── allocators.cpp ├── allocators.h ├── amount.cpp ├── amount.h ├── arith_uint256.cpp ├── arith_uint256.h ├── axel-cli-res.rc ├── axel-cli.cpp ├── axel-tx.cpp ├── axeld-res.rc ├── axeld.cpp ├── base58.cpp ├── base58.h ├── bip38.cpp ├── bip38.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 ├── clientversion.cpp ├── clientversion.h ├── coincontrol.h ├── coins.cpp ├── coins.h ├── compat.h ├── compat │ ├── glibc_compat.cpp │ ├── glibc_sanity.cpp │ ├── glibcxx_compat.cpp │ ├── glibcxx_sanity.cpp │ ├── sanity.h │ └── strnlen.cpp ├── compressor.cpp ├── compressor.h ├── config │ └── .empty ├── core_io.h ├── core_read.cpp ├── core_write.cpp ├── crypter.cpp ├── crypter.h ├── crypto │ ├── aes_helper.c │ ├── blake.c │ ├── common.h │ ├── groestl.c │ ├── hmac_sha256.cpp │ ├── hmac_sha256.h │ ├── hmac_sha512.cpp │ ├── hmac_sha512.h │ ├── jh.c │ ├── keccak.c │ ├── rfc6979_hmac_sha256.cpp │ ├── rfc6979_hmac_sha256.h │ ├── ripemd160.cpp │ ├── ripemd160.h │ ├── scrypt.cpp │ ├── scrypt.h │ ├── sha1.cpp │ ├── sha1.h │ ├── sha256.cpp │ ├── sha256.h │ ├── sha512.cpp │ ├── sha512.h │ ├── skein.c │ ├── sph_blake.h │ ├── sph_groestl.h │ ├── sph_jh.h │ ├── sph_keccak.h │ ├── sph_skein.h │ └── sph_types.h ├── db.cpp ├── db.h ├── eccryptoverify.cpp ├── eccryptoverify.h ├── ecwrapper.cpp ├── ecwrapper.h ├── gm.cpp ├── gm.h ├── hash.cpp ├── hash.h ├── init.cpp ├── init.h ├── kernel.cpp ├── kernel.h ├── key.cpp ├── key.h ├── keystore.cpp ├── keystore.h ├── leveldb │ ├── 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 ├── leveldbwrapper.cpp ├── leveldbwrapper.h ├── limitedmap.h ├── main.cpp ├── main.h ├── makeaxellib.sh ├── masternode-payments.cpp ├── masternode-payments.h ├── masternode-sync.cpp ├── masternode-sync.h ├── masternode.cpp ├── masternode.h ├── masternodeconfig.cpp ├── masternodeconfig.h ├── masternodeman.cpp ├── masternodeman.h ├── merkleblock.cpp ├── merkleblock.h ├── miner.cpp ├── miner.h ├── mruset.h ├── net.cpp ├── net.h ├── netbase.cpp ├── netbase.h ├── noui.cpp ├── noui.h ├── obfuscation-relay.cpp ├── obfuscation-relay.h ├── obfuscation.cpp ├── obfuscation.h ├── pow.cpp ├── pow.h ├── primitives │ ├── block.cpp │ ├── block.h │ ├── transaction.cpp │ └── transaction.h ├── protocol.cpp ├── protocol.h ├── pubkey.cpp ├── pubkey.h ├── qt │ ├── addressbookpage.cpp │ ├── addressbookpage.h │ ├── addresstablemodel.cpp │ ├── addresstablemodel.h │ ├── askpassphrasedialog.cpp │ ├── askpassphrasedialog.h │ ├── axel.cpp │ ├── axel.qrc │ ├── axel_locale.qrc │ ├── axelstrings.cpp │ ├── bip38tooldialog.cpp │ ├── bip38tooldialog.h │ ├── bitcoinaddressvalidator.cpp │ ├── bitcoinaddressvalidator.h │ ├── bitcoinamountfield.cpp │ ├── bitcoinamountfield.h │ ├── bitcoingui.cpp │ ├── bitcoingui.h │ ├── bitcoinunits.cpp │ ├── bitcoinunits.h │ ├── blockexplorer.cpp │ ├── blockexplorer.h │ ├── clientmodel.cpp │ ├── clientmodel.h │ ├── coincontroldialog.cpp │ ├── coincontroldialog.h │ ├── coincontroltreewidget.cpp │ ├── coincontroltreewidget.h │ ├── csvmodelwriter.cpp │ ├── csvmodelwriter.h │ ├── editaddressdialog.cpp │ ├── editaddressdialog.h │ ├── forms │ │ ├── addressbookpage.ui │ │ ├── askpassphrasedialog.ui │ │ ├── bip38tooldialog.ui │ │ ├── blockexplorer.ui │ │ ├── coincontroldialog.ui │ │ ├── editaddressdialog.ui │ │ ├── helpmessagedialog.ui │ │ ├── intro.ui │ │ ├── masternodelist.ui │ │ ├── multisenddialog.ui │ │ ├── multisigdialog.ui │ │ ├── obfuscationconfig.ui │ │ ├── openuridialog.ui │ │ ├── optionsdialog.ui │ │ ├── overviewpage.ui │ │ ├── receivecoinsdialog.ui │ │ ├── receiverequestdialog.ui │ │ ├── rpcconsole.ui │ │ ├── sendcoinsdialog.ui │ │ ├── sendcoinsentry.ui │ │ ├── signverifymessagedialog.ui │ │ ├── toolspage.ui │ │ ├── tos.ui │ │ ├── tradingdialog.ui │ │ └── transactiondescdialog.ui │ ├── guiconstants.h │ ├── guiutil.cpp │ ├── guiutil.h │ ├── intro.cpp │ ├── intro.h │ ├── locale │ │ ├── axel_bg.ts │ │ ├── axel_ca.ts │ │ ├── axel_cs.ts │ │ ├── axel_da.ts │ │ ├── axel_de.ts │ │ ├── axel_en.ts │ │ ├── axel_en_US.ts │ │ ├── axel_es.ts │ │ ├── axel_fi.ts │ │ ├── axel_fr_FR.ts │ │ ├── axel_it.ts │ │ ├── axel_ja.ts │ │ ├── axel_ko_KR.ts │ │ ├── axel_nl.ts │ │ ├── axel_pl.ts │ │ ├── axel_pt.ts │ │ ├── axel_pt_BR.ts │ │ ├── axel_ro_RO.ts │ │ ├── axel_ru.ts │ │ ├── axel_sk.ts │ │ ├── axel_sv.ts │ │ ├── axel_tr.ts │ │ ├── axel_uk.ts │ │ ├── axel_zh_CN.ts │ │ └── axel_zh_TW.ts │ ├── macdockiconhandler.h │ ├── macdockiconhandler.mm │ ├── macnotificationhandler.h │ ├── macnotificationhandler.mm │ ├── masternodelist.cpp │ ├── masternodelist.h │ ├── multisenddialog.cpp │ ├── multisenddialog.h │ ├── multisigdialog.cpp │ ├── multisigdialog.h │ ├── networkstyle.cpp │ ├── networkstyle.h │ ├── notificator.cpp │ ├── notificator.h │ ├── obfuscationconfig.cpp │ ├── obfuscationconfig.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 │ ├── qssloader.cpp │ ├── qssloader.h │ ├── qvalidatedlineedit.cpp │ ├── qvalidatedlineedit.h │ ├── qvaluecombobox.cpp │ ├── qvaluecombobox.h │ ├── receivecoinsdialog.cpp │ ├── receivecoinsdialog.h │ ├── receiverequestdialog.cpp │ ├── receiverequestdialog.h │ ├── recentrequeststablemodel.cpp │ ├── recentrequeststablemodel.h │ ├── res │ │ ├── axel-qt-res.rc │ │ ├── css │ │ │ ├── default.css │ │ │ ├── preprod.css │ │ │ └── testnet.css │ │ ├── dark │ │ │ ├── css │ │ │ │ ├── dark.css │ │ │ │ ├── preprod.css │ │ │ │ └── testnet.css │ │ │ ├── icons │ │ │ │ ├── add.png │ │ │ │ ├── address-book.png │ │ │ │ ├── automint_active.png │ │ │ │ ├── automint_inactive.png │ │ │ │ ├── axel.ico │ │ │ │ ├── axel.png │ │ │ │ ├── bittrex.png │ │ │ │ ├── blockexplorer.png │ │ │ │ ├── browse.png │ │ │ │ ├── clock1.png │ │ │ │ ├── clock2.png │ │ │ │ ├── clock3.png │ │ │ │ ├── clock4.png │ │ │ │ ├── clock5.png │ │ │ │ ├── configure.png │ │ │ │ ├── connect0_16.png │ │ │ │ ├── connect1_16.png │ │ │ │ ├── connect2_16.png │ │ │ │ ├── connect3_16.png │ │ │ │ ├── connect4_16.png │ │ │ │ ├── debugwindow.png │ │ │ │ ├── edit.png │ │ │ │ ├── edit_white.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── explorer.png │ │ │ │ ├── export.png │ │ │ │ ├── eye.png │ │ │ │ ├── eye_minus.png │ │ │ │ ├── eye_plus.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesave_white.png │ │ │ │ ├── history.png │ │ │ │ ├── history_preprod.png │ │ │ │ ├── history_testnet.png │ │ │ │ ├── icon_discord.png │ │ │ │ ├── icon_explorer.png │ │ │ │ ├── icon_facebook.png │ │ │ │ ├── icon_telegram.png │ │ │ │ ├── icon_twitter.png │ │ │ │ ├── icon_www.png │ │ │ │ ├── icons8-crowdfunding_filled.png │ │ │ │ ├── import.png │ │ │ │ ├── key-01.png │ │ │ │ ├── key.png │ │ │ │ ├── lock_closed.png │ │ │ │ ├── lock_open.png │ │ │ │ ├── masternodes.png │ │ │ │ ├── masternodes_preprod.png │ │ │ │ ├── masternodes_testnet.png │ │ │ │ ├── notsynced.png │ │ │ │ ├── onion.png │ │ │ │ ├── overview.png │ │ │ │ ├── overview_preprod.png │ │ │ │ ├── overview_testnet.png │ │ │ │ ├── qrcode.png │ │ │ │ ├── quit.png │ │ │ │ ├── receive.png │ │ │ │ ├── receive_preprod.png │ │ │ │ ├── receive_testnet.png │ │ │ │ ├── receive_white.png │ │ │ │ ├── refresh.png │ │ │ │ ├── remove.png │ │ │ │ ├── send.png │ │ │ │ ├── send_preprod.png │ │ │ │ ├── send_testnet.png │ │ │ │ ├── staking_active.png │ │ │ │ ├── staking_inactive.png │ │ │ │ ├── synced.png │ │ │ │ ├── tools.png │ │ │ │ ├── tools_preprod.png │ │ │ │ ├── tools_testnet.png │ │ │ │ ├── trade.png │ │ │ │ ├── transaction0.png │ │ │ │ ├── transaction0_dark.png │ │ │ │ ├── transaction0_white.png │ │ │ │ ├── transaction2.png │ │ │ │ ├── transaction_conflicted.png │ │ │ │ ├── tx_inout-01.png │ │ │ │ ├── tx_inout.png │ │ │ │ ├── tx_input.png │ │ │ │ ├── tx_mined.png │ │ │ │ └── tx_output.png │ │ │ ├── images │ │ │ │ ├── about.png │ │ │ │ ├── axel_logo_horizontal.png │ │ │ │ ├── axel_logo_horizontal_preprod.png │ │ │ │ ├── axel_logo_horizontal_testnet.png │ │ │ │ ├── axel_utility_token_logo_horizontal.png │ │ │ │ ├── branch-closed.png │ │ │ │ ├── branch-open.png │ │ │ │ ├── checkbox_checked.png │ │ │ │ ├── checkbox_checked_hover.png │ │ │ │ ├── checkbox_checked_pressed.png │ │ │ │ ├── checkbox_unchecked.png │ │ │ │ ├── checkbox_unchecked_hover.png │ │ │ │ ├── checkbox_unchecked_pressed.png │ │ │ │ ├── downArrow.png │ │ │ │ ├── downArrow_small.png │ │ │ │ ├── frame_blue.png │ │ │ │ ├── frame_blue_old.png │ │ │ │ ├── leftArrow_small.png │ │ │ │ ├── qtreeview_selected.png │ │ │ │ ├── rightArrow_small.png │ │ │ │ ├── splash.png │ │ │ │ ├── splash_testnet.png │ │ │ │ └── upArrow_small.png │ │ │ └── movies │ │ │ │ ├── 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 │ │ ├── fonts │ │ │ └── axel_font.ttf │ │ ├── icons │ │ │ ├── add.png │ │ │ ├── address-book.png │ │ │ ├── axel.icns │ │ │ ├── axel.ico │ │ │ ├── axel.png │ │ │ ├── axel_utility_token.icns │ │ │ ├── axel_utility_token.ico │ │ │ ├── axel_utility_token.png │ │ │ ├── axel_utility_token_testnet.ico │ │ │ ├── axel_utility_token_testnet.png │ │ │ ├── bittrex.png │ │ │ ├── blockexplorer.png │ │ │ ├── browse.png │ │ │ ├── clock1.png │ │ │ ├── clock2.png │ │ │ ├── clock3.png │ │ │ ├── clock4.png │ │ │ ├── clock5.png │ │ │ ├── configure.png │ │ │ ├── connect0_16.png │ │ │ ├── connect1_16.png │ │ │ ├── connect2_16.png │ │ │ ├── connect3_16.png │ │ │ ├── connect4_16.png │ │ │ ├── debugwindow.png │ │ │ ├── edit.png │ │ │ ├── edit_white.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── explorer.png │ │ │ ├── export.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── filesave.png │ │ │ ├── filesave_white.png │ │ │ ├── history.png │ │ │ ├── history_preprod.png │ │ │ ├── history_testnet.png │ │ │ ├── icon_discord.png │ │ │ ├── icon_explorer.png │ │ │ ├── icon_facebook.png │ │ │ ├── icon_telegram.png │ │ │ ├── icon_twitter.png │ │ │ ├── icon_www.png │ │ │ ├── import.png │ │ │ ├── key.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── masternodes.png │ │ │ ├── masternodes_preprod.png │ │ │ ├── masternodes_testnet.png │ │ │ ├── notsynced.png │ │ │ ├── overview.png │ │ │ ├── overview_preprod.png │ │ │ ├── overview_testnet.png │ │ │ ├── qrcode.png │ │ │ ├── quit.png │ │ │ ├── receive.png │ │ │ ├── receive_preprod.png │ │ │ ├── receive_testnet.png │ │ │ ├── receive_white.png │ │ │ ├── refresh.png │ │ │ ├── remove.png │ │ │ ├── send.png │ │ │ ├── send_preprod.png │ │ │ ├── send_testnet.png │ │ │ ├── staking_active.png │ │ │ ├── staking_inactive.png │ │ │ ├── synced.png │ │ │ ├── tools.png │ │ │ ├── tools_preprod.png │ │ │ ├── tools_testnet.png │ │ │ ├── trade.png │ │ │ ├── transaction0.png │ │ │ ├── transaction0_white.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── tx_inout-01.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ └── tx_output.png │ │ ├── images │ │ │ ├── about.png │ │ │ ├── axel_logo_horizontal.png │ │ │ ├── axel_logo_horizontal_preprod.png │ │ │ ├── axel_logo_horizontal_testnet.png │ │ │ ├── axel_utility_token_logo_horizontal.png │ │ │ ├── branch-closed.png │ │ │ ├── branch-open.png │ │ │ ├── checkbox.zip │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_hover.png │ │ │ ├── checkbox_checked_pressed.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_hover.png │ │ │ ├── checkbox_unchecked_pressed.png │ │ │ ├── downArrow.png │ │ │ ├── downArrow_small.png │ │ │ ├── frame_blue.png │ │ │ ├── frame_blue_old.png │ │ │ ├── leftArrow_small.png │ │ │ ├── qtreeview_selected.png │ │ │ ├── rightArrow_small.png │ │ │ ├── splash.png │ │ │ ├── splash_testnet.png │ │ │ └── upArrow_small.png │ │ ├── movies │ │ │ ├── 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 │ │ └── tos │ │ │ └── AXEL-Wallet-User-Agreement.htm │ ├── rpcconsole.cpp │ ├── rpcconsole.h │ ├── sendcoinsdialog.cpp │ ├── sendcoinsdialog.h │ ├── sendcoinsentry.cpp │ ├── sendcoinsentry.h │ ├── signverifymessagedialog.cpp │ ├── signverifymessagedialog.h │ ├── splashscreen.cpp │ ├── splashscreen.h │ ├── test │ │ ├── paymentrequestdata.h │ │ ├── paymentservertests.cpp │ │ ├── paymentservertests.h │ │ ├── test_main.cpp │ │ ├── uritests.cpp │ │ └── uritests.h │ ├── toolspage.cpp │ ├── toolspage.h │ ├── tos.cpp │ ├── tos.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 │ ├── urlrequest.cpp │ ├── urlrequest.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 ├── random.cpp ├── random.h ├── resck │ ├── libaxel_resck_linux.a │ ├── libaxel_resck_macos.a │ ├── libaxel_resck_windows.a │ ├── resck.h │ └── resckparam.h ├── rest.cpp ├── reverse_iterate.h ├── rpcblockchain.cpp ├── rpcclient.cpp ├── rpcclient.h ├── rpcdump.cpp ├── rpcmasternode.cpp ├── rpcmining.cpp ├── rpcmisc.cpp ├── rpcnet.cpp ├── rpcprotocol.cpp ├── rpcprotocol.h ├── rpcrawtransaction.cpp ├── rpcserver.cpp ├── rpcserver.h ├── rpcwallet.cpp ├── script │ ├── bitcoinconsensus.cpp │ ├── bitcoinconsensus.h │ ├── interpreter.cpp │ ├── interpreter.h │ ├── script.cpp │ ├── script.h │ ├── script_error.cpp │ ├── script_error.h │ ├── sigcache.cpp │ ├── sigcache.h │ ├── sign.cpp │ ├── sign.h │ ├── standard.cpp │ └── standard.h ├── secp256k1 │ ├── .travis.yml │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── TODO │ ├── autogen.sh │ ├── configure.ac │ ├── include │ │ └── secp256k1.h │ ├── libsecp256k1.pc.in │ ├── nasm_lt.sh │ └── src │ │ ├── bench_inv.c │ │ ├── bench_sign.c │ │ ├── bench_verify.c │ │ ├── ecdsa.h │ │ ├── ecdsa_impl.h │ │ ├── eckey.h │ │ ├── eckey_impl.h │ │ ├── ecmult.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.asm │ │ ├── field_5x52_asm_impl.h │ │ ├── field_5x52_impl.h │ │ ├── field_5x52_int128_impl.h │ │ ├── field_gmp.h │ │ ├── field_gmp_impl.h │ │ ├── field_impl.h │ │ ├── group.h │ │ ├── group_impl.h │ │ ├── java │ │ ├── org │ │ │ └── bitcoin │ │ │ │ └── NativeSecp256k1.java │ │ ├── org_bitcoin_NativeSecp256k1.c │ │ └── org_bitcoin_NativeSecp256k1.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 │ │ ├── secp256k1.c │ │ ├── testrand.h │ │ ├── testrand_impl.h │ │ ├── tests.c │ │ └── util.h ├── serialize.h ├── spork.cpp ├── spork.h ├── streams.h ├── swifttx.cpp ├── swifttx.h ├── sync.cpp ├── sync.h ├── test │ ├── Checkpoints_tests.cpp │ ├── DoS_tests.cpp │ ├── README.md │ ├── accounting_tests.cpp │ ├── alert_tests.cpp │ ├── allocator_tests.cpp │ ├── arith_uint256_tests.cpp │ ├── base32_tests.cpp │ ├── base58_tests.cpp │ ├── base64_tests.cpp │ ├── bctest.py │ ├── bignum.h │ ├── bip32_tests.cpp │ ├── bitcoin-util-test.py │ ├── bloom_tests.cpp │ ├── buildenv.py.in │ ├── checkblock_tests.cpp │ ├── coins_tests.cpp │ ├── compress_tests.cpp │ ├── crypto_tests.cpp │ ├── data │ │ ├── README.md │ │ ├── alertTests.raw │ │ ├── base58_encode_decode.json │ │ ├── base58_keys_invalid.json │ │ ├── base58_keys_valid.json │ │ ├── bitcoin-util-test.json │ │ ├── blanktx.hex │ │ ├── script_invalid.json │ │ ├── script_valid.json │ │ ├── sig_canonical.json │ │ ├── sig_noncanonical.json │ │ ├── sighash.json │ │ ├── tt-delin1-out.hex │ │ ├── tt-delout1-out.hex │ │ ├── tt-locktime317000-out.hex │ │ ├── tx394b54bb.hex │ │ ├── tx_invalid.json │ │ ├── tx_valid.json │ │ ├── txcreate1.hex │ │ ├── txcreate2.hex │ │ └── txcreatesign.hex │ ├── getarg_tests.cpp │ ├── hash_tests.cpp │ ├── key_tests.cpp │ ├── main_tests.cpp │ ├── mempool_tests.cpp │ ├── miner_tests.cpp │ ├── mruset_tests.cpp │ ├── multisig_tests.cpp │ ├── netbase_tests.cpp │ ├── pmt_tests.cpp │ ├── rpc_tests.cpp │ ├── rpc_wallet_tests.cpp │ ├── sanity_tests.cpp │ ├── script_P2SH_tests.cpp │ ├── script_tests.cpp │ ├── scriptnum_tests.cpp │ ├── serialize_tests.cpp │ ├── sighash_tests.cpp │ ├── sigopcount_tests.cpp │ ├── skiplist_tests.cpp │ ├── test_axel.cpp │ ├── timedata_tests.cpp │ ├── transaction_tests.cpp │ ├── uint256_tests.cpp │ ├── univalue_tests.cpp │ ├── util_tests.cpp │ └── wallet_tests.cpp ├── threadsafety.h ├── timedata.cpp ├── timedata.h ├── tinyformat.h ├── txdb.cpp ├── txdb.h ├── txmempool.cpp ├── txmempool.h ├── ui_interface.h ├── uint256.cpp ├── uint256.h ├── uint512.h ├── undo.h ├── univalue │ ├── .travis.yml │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── TODO │ ├── autogen.sh │ ├── configure.ac │ ├── gen │ │ └── gen.cpp │ ├── include │ │ └── univalue.h │ ├── lib │ │ ├── univalue.cpp │ │ ├── univalue_escapes.h │ │ ├── univalue_read.cpp │ │ ├── univalue_utffilter.h │ │ └── univalue_write.cpp │ ├── pc │ │ ├── libunivalue-uninstalled.pc.in │ │ └── libunivalue.pc.in │ └── test │ │ ├── fail1.json │ │ ├── fail10.json │ │ ├── fail11.json │ │ ├── fail12.json │ │ ├── fail13.json │ │ ├── fail14.json │ │ ├── fail15.json │ │ ├── fail16.json │ │ ├── fail17.json │ │ ├── fail18.json │ │ ├── fail19.json │ │ ├── fail2.json │ │ ├── fail20.json │ │ ├── fail21.json │ │ ├── fail22.json │ │ ├── fail23.json │ │ ├── fail24.json │ │ ├── fail25.json │ │ ├── fail26.json │ │ ├── fail27.json │ │ ├── fail28.json │ │ ├── fail29.json │ │ ├── fail3.json │ │ ├── fail30.json │ │ ├── fail31.json │ │ ├── fail32.json │ │ ├── fail33.json │ │ ├── fail34.json │ │ ├── fail35.json │ │ ├── fail36.json │ │ ├── fail37.json │ │ ├── fail38.json │ │ ├── fail39.json │ │ ├── fail4.json │ │ ├── fail40.json │ │ ├── fail41.json │ │ ├── fail42.json │ │ ├── fail44.json │ │ ├── fail5.json │ │ ├── fail6.json │ │ ├── fail7.json │ │ ├── fail8.json │ │ ├── fail9.json │ │ ├── no_nul.cpp │ │ ├── object.cpp │ │ ├── pass1.json │ │ ├── pass2.json │ │ ├── pass3.json │ │ ├── round1.json │ │ ├── round2.json │ │ ├── round3.json │ │ ├── round4.json │ │ ├── round5.json │ │ ├── round6.json │ │ ├── round7.json │ │ ├── test_json.cpp │ │ └── unitester.cpp ├── util.cpp ├── util.h ├── utilmoneystr.cpp ├── utilmoneystr.h ├── utilstrencodings.cpp ├── utilstrencodings.h ├── utiltime.cpp ├── utiltime.h ├── validationinterface.cpp ├── validationinterface.h ├── version.h ├── wallet.cpp ├── wallet.h ├── wallet_ismine.cpp ├── wallet_ismine.h ├── walletdb.cpp ├── walletdb.h └── zmq │ ├── zmqabstractnotifier.cpp │ ├── zmqabstractnotifier.h │ ├── zmqconfig.h │ ├── zmqnotificationinterface.cpp │ ├── zmqnotificationinterface.h │ ├── zmqpublishnotifier.cpp │ └── zmqpublishnotifier.h └── test ├── README.md ├── config.ini.in ├── functional ├── README.md ├── combine_logs.py ├── combined_log_template.html ├── create_cache.py ├── example_test.py ├── feature_block.py ├── feature_cltv.py ├── feature_config_args.py ├── feature_fee_estimation.py ├── feature_help.py ├── feature_logging.py ├── feature_minchainwork.py ├── feature_notifications.py ├── feature_nulldummy.py ├── feature_proxy.py ├── feature_reindex.py ├── feature_uacomment.py ├── interface_bitcoin_cli.py ├── interface_http.py ├── interface_rest.py ├── interface_zmq.py ├── mempool_limit.py ├── mempool_packages.py ├── mempool_persist.py ├── mempool_reorg.py ├── mempool_resurrect.py ├── mempool_spend_coinbase.py ├── mining_basic.py ├── mining_getblocktemplate_longpoll.py ├── mining_pos_coldStaking.py ├── mining_pos_fakestake.py ├── mining_pos_reorg.py ├── mining_prioritisetransaction.py ├── p2p_disconnect_ban.py ├── p2p_feefilter.py ├── p2p_fingerprint.py ├── p2p_invalid_block.py ├── p2p_invalid_tx.py ├── p2p_leak.py ├── p2p_mempool.py ├── p2p_sendheaders.py ├── p2p_time_offset.py ├── p2p_timeouts.py ├── p2p_unrequested_blocks.py ├── rpc_bind.py ├── rpc_bip38.py ├── rpc_blockchain.py ├── rpc_budget.py ├── rpc_decodescript.py ├── rpc_deprecated.py ├── rpc_fundrawtransaction.py ├── rpc_getchaintips.py ├── rpc_invalidateblock.py ├── rpc_net.py ├── rpc_rawtransaction.py ├── rpc_signmessage.py ├── rpc_signrawtransaction.py ├── rpc_spork.py ├── rpc_users.py ├── test_framework │ ├── __init__.py │ ├── address.py │ ├── authproxy.py │ ├── bignum.py │ ├── blockstore.py │ ├── blocktools.py │ ├── comptool.py │ ├── coverage.py │ ├── key.py │ ├── messages.py │ ├── mininode.py │ ├── netutil.py │ ├── pivx_node.py │ ├── script.py │ ├── siphash.py │ ├── socks5.py │ ├── test_framework.py │ ├── test_node.py │ └── util.py ├── test_runner.py ├── wallet_abandonconflict.py ├── wallet_backup.py ├── wallet_basic.py ├── wallet_bumpfee.py ├── wallet_disable.py ├── wallet_dump.py ├── wallet_encryption.py ├── wallet_hd.py ├── wallet_import_rescan.py ├── wallet_import_stakingaddress.py ├── wallet_importmulti.py ├── wallet_keypool.py ├── wallet_keypool_topup.py ├── wallet_labels.py ├── wallet_listreceivedby.py ├── wallet_listsinceblock.py ├── wallet_listtransactions.py ├── wallet_txn_clone.py ├── wallet_txn_doublespend.py ├── wallet_upgrade.py ├── wallet_zapwallettxes.py └── wallet_zerocoin_publicspends.py ├── lint └── lint-qt.sh └── util ├── bitcoin-util-test.py ├── data ├── bitcoin-util-test.json ├── blanktxv1.hex ├── blanktxv1.json ├── pre_hd_wallet.dat ├── tt-delin1-out.hex ├── tt-delin1-out.json ├── tt-delout1-out.hex ├── tt-delout1-out.json ├── tt-locktime317000-out.hex ├── tt-locktime317000-out.json ├── tx394b54bb.hex ├── txcreate1.hex ├── txcreate1.json ├── txcreate2.hex ├── txcreate2.json ├── txcreatescript1.hex ├── txcreatescript1.json ├── txcreatesign.hex └── txcreatesign.json └── rpcauth-test.py /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/axel-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/axel-qt.pro -------------------------------------------------------------------------------- /contrib/axeld.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/axeld.bash-completion -------------------------------------------------------------------------------- /contrib/bitrpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/bitrpc/README.md -------------------------------------------------------------------------------- /contrib/bitrpc/bitrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/bitrpc/bitrpc.py -------------------------------------------------------------------------------- /contrib/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/README.md -------------------------------------------------------------------------------- /contrib/debian/axel-qt.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/axel-qt.desktop -------------------------------------------------------------------------------- /contrib/debian/axel-qt.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/axel-qt.install -------------------------------------------------------------------------------- /contrib/debian/axel-qt.protocol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/axel-qt.protocol -------------------------------------------------------------------------------- /contrib/debian/axeld.examples: -------------------------------------------------------------------------------- 1 | debian/examples/axel.conf 2 | -------------------------------------------------------------------------------- /contrib/debian/axeld.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/axeld.install -------------------------------------------------------------------------------- /contrib/debian/axeld.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/axeld.manpages -------------------------------------------------------------------------------- /contrib/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/changelog -------------------------------------------------------------------------------- /contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/debian/examples/axel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/examples/axel.conf -------------------------------------------------------------------------------- /contrib/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/gbp.conf -------------------------------------------------------------------------------- /contrib/debian/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/patches/README -------------------------------------------------------------------------------- /contrib/debian/patches/series: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/rules -------------------------------------------------------------------------------- /contrib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /contrib/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/debian/watch -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/devtools/check-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/devtools/check-doc.py -------------------------------------------------------------------------------- /contrib/devtools/github-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/devtools/github-merge.py -------------------------------------------------------------------------------- /contrib/devtools/symbol-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/devtools/symbol-check.py -------------------------------------------------------------------------------- /contrib/gitian-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/gitian-build.sh -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/axeld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/init/axeld.conf -------------------------------------------------------------------------------- /contrib/init/axeld.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/init/axeld.init -------------------------------------------------------------------------------- /contrib/init/axeld.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/init/axeld.openrc -------------------------------------------------------------------------------- /contrib/init/axeld.openrcconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/init/axeld.openrcconf -------------------------------------------------------------------------------- /contrib/init/axeld.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/init/axeld.service -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/macdeploy/background.svg -------------------------------------------------------------------------------- /contrib/macdeploy/fancy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/macdeploy/fancy.plist -------------------------------------------------------------------------------- /contrib/macdeploy/macdeployqtplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/macdeploy/macdeployqtplus -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/qt_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/qt_translations.py -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/generate-seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/seeds/generate-seeds.py -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/spendfrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/spendfrom/README.md -------------------------------------------------------------------------------- /contrib/spendfrom/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/spendfrom/setup.py -------------------------------------------------------------------------------- /contrib/spendfrom/spendfrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/spendfrom/spendfrom.py -------------------------------------------------------------------------------- /contrib/test-patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/test-patches/README.md -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/tidy_datadir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/tidy_datadir.sh -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/builders/default.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/config.site.in -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/bdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/bdb.mk -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/dbus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/dbus.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/fontconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/fontconfig.mk -------------------------------------------------------------------------------- /depends/packages/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/freetype.mk -------------------------------------------------------------------------------- /depends/packages/libICE.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/libICE.mk -------------------------------------------------------------------------------- /depends/packages/libSM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/libSM.mk -------------------------------------------------------------------------------- /depends/packages/libX11.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/libX11.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libXext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/libXext.mk -------------------------------------------------------------------------------- /depends/packages/libevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/libevent.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/miniupnpc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/miniupnpc.mk -------------------------------------------------------------------------------- /depends/packages/native_ccache.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/native_ccache.mk -------------------------------------------------------------------------------- /depends/packages/native_cdrkit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/native_cdrkit.mk -------------------------------------------------------------------------------- /depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/openssl.mk -------------------------------------------------------------------------------- /depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/packages.mk -------------------------------------------------------------------------------- /depends/packages/protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/protobuf.mk -------------------------------------------------------------------------------- /depends/packages/qrencode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/qrencode.mk -------------------------------------------------------------------------------- /depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/qt.mk -------------------------------------------------------------------------------- /depends/packages/xcb_proto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/xcb_proto.mk -------------------------------------------------------------------------------- /depends/packages/xextproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/xextproto.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/xtrans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/xtrans.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /depends/packages/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/packages/zlib.mk -------------------------------------------------------------------------------- /depends/patches/qt/mac-qmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/patches/qt/mac-qmake.conf -------------------------------------------------------------------------------- /depends/patches/qt46/stlfix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/depends/patches/qt46/stlfix.patch -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/POW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/POW.png -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/README_osx.md -------------------------------------------------------------------------------- /doc/README_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/README_windows.md -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/bitcoin_logo_doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/bitcoin_logo_doxygen.png -------------------------------------------------------------------------------- /doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/build-osx.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/build-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/build-windows.md -------------------------------------------------------------------------------- /doc/build_centos7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/build_centos7.md -------------------------------------------------------------------------------- /doc/data-storage-corruption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/data-storage-corruption.md -------------------------------------------------------------------------------- /doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/developer-notes.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/dump_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/dump_import.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/gitian-building.md -------------------------------------------------------------------------------- /doc/img/bootstrap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/img/bootstrap1.png -------------------------------------------------------------------------------- /doc/img/bootstrap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/img/bootstrap2.png -------------------------------------------------------------------------------- /doc/img/bootstrap4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/img/bootstrap4.png -------------------------------------------------------------------------------- /doc/img/bootstrap5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/img/bootstrap5.png -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/masternode_conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/masternode_conf.md -------------------------------------------------------------------------------- /doc/multiwallet-qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/multiwallet-qt.md -------------------------------------------------------------------------------- /doc/pivx-doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/Doxyfile -------------------------------------------------------------------------------- /doc/pivx-doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/README.md -------------------------------------------------------------------------------- /doc/pivx-doc/README_osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/README_osx.md -------------------------------------------------------------------------------- /doc/pivx-doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/README_windows.txt -------------------------------------------------------------------------------- /doc/pivx-doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/REST-interface.md -------------------------------------------------------------------------------- /doc/pivx-doc/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/bootstrap.md -------------------------------------------------------------------------------- /doc/pivx-doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/build-osx.md -------------------------------------------------------------------------------- /doc/pivx-doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/build-unix.md -------------------------------------------------------------------------------- /doc/pivx-doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/developer-notes.md -------------------------------------------------------------------------------- /doc/pivx-doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/pivx-doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/files.md -------------------------------------------------------------------------------- /doc/pivx-doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/gitian-building.md -------------------------------------------------------------------------------- /doc/pivx-doc/guide-startmany.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/guide-startmany.md -------------------------------------------------------------------------------- /doc/pivx-doc/img/bootstrap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/img/bootstrap1.png -------------------------------------------------------------------------------- /doc/pivx-doc/img/bootstrap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/img/bootstrap2.png -------------------------------------------------------------------------------- /doc/pivx-doc/img/bootstrap4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/img/bootstrap4.png -------------------------------------------------------------------------------- /doc/pivx-doc/img/bootstrap5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/img/bootstrap5.png -------------------------------------------------------------------------------- /doc/pivx-doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/init.md -------------------------------------------------------------------------------- /doc/pivx-doc/masternode-budget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/masternode-budget.md -------------------------------------------------------------------------------- /doc/pivx-doc/masternode_conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/masternode_conf.md -------------------------------------------------------------------------------- /doc/pivx-doc/multiwallet-qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/multiwallet-qt.md -------------------------------------------------------------------------------- /doc/pivx-doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/release-notes.md -------------------------------------------------------------------------------- /doc/pivx-doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/release-process.md -------------------------------------------------------------------------------- /doc/pivx-doc/swifttx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/swifttx.md -------------------------------------------------------------------------------- /doc/pivx-doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/tor.md -------------------------------------------------------------------------------- /doc/pivx-doc/travis-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/travis-ci.txt -------------------------------------------------------------------------------- /doc/pivx-doc/unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/unit-tests.md -------------------------------------------------------------------------------- /doc/pivx-doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/pivx-doc/zmq.md -------------------------------------------------------------------------------- /doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/release-notes.md -------------------------------------------------------------------------------- /doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/swifttx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/swifttx.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/travis-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/travis-ci.txt -------------------------------------------------------------------------------- /doc/unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/unit-tests.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/pkg.m4 -------------------------------------------------------------------------------- /qa/pull-tester/rpc-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/pull-tester/rpc-tests.sh -------------------------------------------------------------------------------- /qa/pull-tester/run-bitcoin-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/pull-tester/run-bitcoin-cli -------------------------------------------------------------------------------- /qa/pull-tester/tests-config.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/pull-tester/tests-config.sh.in -------------------------------------------------------------------------------- /qa/rpc-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/README.md -------------------------------------------------------------------------------- /qa/rpc-tests/bipdersig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/bipdersig.py -------------------------------------------------------------------------------- /qa/rpc-tests/conflictedbalance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/conflictedbalance.sh -------------------------------------------------------------------------------- /qa/rpc-tests/forknotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/forknotify.py -------------------------------------------------------------------------------- /qa/rpc-tests/getchaintips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/getchaintips.py -------------------------------------------------------------------------------- /qa/rpc-tests/httpbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/httpbasics.py -------------------------------------------------------------------------------- /qa/rpc-tests/invalidateblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/invalidateblock.py -------------------------------------------------------------------------------- /qa/rpc-tests/keypool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/keypool.py -------------------------------------------------------------------------------- /qa/rpc-tests/listtransactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/listtransactions.py -------------------------------------------------------------------------------- /qa/rpc-tests/netutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/netutil.py -------------------------------------------------------------------------------- /qa/rpc-tests/proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/proxy_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qa/rpc-tests/receivedby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/receivedby.py -------------------------------------------------------------------------------- /qa/rpc-tests/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/reindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/rest.py -------------------------------------------------------------------------------- /qa/rpc-tests/rpcbind_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/rpcbind_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/send.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/send.sh -------------------------------------------------------------------------------- /qa/rpc-tests/smartfees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/smartfees.py -------------------------------------------------------------------------------- /qa/rpc-tests/socks5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/socks5.py -------------------------------------------------------------------------------- /qa/rpc-tests/test_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/test_framework.py -------------------------------------------------------------------------------- /qa/rpc-tests/txn_doublespend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/txn_doublespend.py -------------------------------------------------------------------------------- /qa/rpc-tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/util.py -------------------------------------------------------------------------------- /qa/rpc-tests/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/util.sh -------------------------------------------------------------------------------- /qa/rpc-tests/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/wallet.py -------------------------------------------------------------------------------- /qa/rpc-tests/walletbackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/walletbackup.py -------------------------------------------------------------------------------- /qa/rpc-tests/zapwallettxes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/zapwallettxes.sh -------------------------------------------------------------------------------- /qa/rpc-tests/zmq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/qa/rpc-tests/zmq_test.py -------------------------------------------------------------------------------- /share/certs/PrivateKeyNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/certs/PrivateKeyNotes.md -------------------------------------------------------------------------------- /share/genbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/genbuild.sh -------------------------------------------------------------------------------- /share/pixmaps/addressbook16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/addressbook16.bmp -------------------------------------------------------------------------------- /share/pixmaps/addressbook20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/addressbook20.bmp -------------------------------------------------------------------------------- /share/pixmaps/axel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel.ico -------------------------------------------------------------------------------- /share/pixmaps/axel128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel128.png -------------------------------------------------------------------------------- /share/pixmaps/axel128.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel128.xpm -------------------------------------------------------------------------------- /share/pixmaps/axel16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel16.png -------------------------------------------------------------------------------- /share/pixmaps/axel16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel16.xpm -------------------------------------------------------------------------------- /share/pixmaps/axel256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel256.png -------------------------------------------------------------------------------- /share/pixmaps/axel256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel256.xpm -------------------------------------------------------------------------------- /share/pixmaps/axel32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel32.png -------------------------------------------------------------------------------- /share/pixmaps/axel32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel32.xpm -------------------------------------------------------------------------------- /share/pixmaps/axel64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel64.png -------------------------------------------------------------------------------- /share/pixmaps/axel64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/axel64.xpm -------------------------------------------------------------------------------- /share/pixmaps/check.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/check.ico -------------------------------------------------------------------------------- /share/pixmaps/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/favicon.ico -------------------------------------------------------------------------------- /share/pixmaps/nsis-header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/nsis-header.bmp -------------------------------------------------------------------------------- /share/pixmaps/nsis-wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/nsis-wizard.bmp -------------------------------------------------------------------------------- /share/pixmaps/send16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/send16.bmp -------------------------------------------------------------------------------- /share/pixmaps/send16mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/send16mask.bmp -------------------------------------------------------------------------------- /share/pixmaps/send20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/send20.bmp -------------------------------------------------------------------------------- /share/pixmaps/send20mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/pixmaps/send20mask.bmp -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/qt/extract_strings_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/qt/extract_strings_qt.py -------------------------------------------------------------------------------- /share/qt/img/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/qt/img/reload.png -------------------------------------------------------------------------------- /share/qt/img/reload.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/qt/img/reload.xcf -------------------------------------------------------------------------------- /share/qt/make_spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/qt/make_spinner.py -------------------------------------------------------------------------------- /share/qt/make_windows_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/qt/make_windows_icon.sh -------------------------------------------------------------------------------- /share/qt/protobuf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/qt/protobuf.pri -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /share/ui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/share/ui.rc -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.leveldb.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/Makefile.leveldb.include -------------------------------------------------------------------------------- /src/Makefile.qt.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/Makefile.qt.include -------------------------------------------------------------------------------- /src/Makefile.qttest.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/Makefile.qttest.include -------------------------------------------------------------------------------- /src/Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/Makefile.test.include -------------------------------------------------------------------------------- /src/activemasternode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/activemasternode.cpp -------------------------------------------------------------------------------- /src/activemasternode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/activemasternode.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/alert.cpp -------------------------------------------------------------------------------- /src/alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/alert.h -------------------------------------------------------------------------------- /src/allocators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/allocators.cpp -------------------------------------------------------------------------------- /src/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/allocators.h -------------------------------------------------------------------------------- /src/amount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/amount.cpp -------------------------------------------------------------------------------- /src/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/amount.h -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/axel-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/axel-cli-res.rc -------------------------------------------------------------------------------- /src/axel-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/axel-cli.cpp -------------------------------------------------------------------------------- /src/axel-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/axel-tx.cpp -------------------------------------------------------------------------------- /src/axeld-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/axeld-res.rc -------------------------------------------------------------------------------- /src/axeld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/axeld.cpp -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bip38.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/bip38.cpp -------------------------------------------------------------------------------- /src/bip38.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/bip38.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/checkpoints.cpp -------------------------------------------------------------------------------- /src/checkpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/checkpoints.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/coincontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/coincontrol.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibc_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/compat/glibc_sanity.cpp -------------------------------------------------------------------------------- /src/compat/glibcxx_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/compat/glibcxx_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibcxx_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/compat/glibcxx_sanity.cpp -------------------------------------------------------------------------------- /src/compat/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/compat/sanity.h -------------------------------------------------------------------------------- /src/compat/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/compat/strnlen.cpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypter.cpp -------------------------------------------------------------------------------- /src/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypter.h -------------------------------------------------------------------------------- /src/crypto/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/aes_helper.c -------------------------------------------------------------------------------- /src/crypto/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/blake.c -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/groestl.c -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/jh.c -------------------------------------------------------------------------------- /src/crypto/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/keccak.c -------------------------------------------------------------------------------- /src/crypto/rfc6979_hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/rfc6979_hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/scrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/scrypt.cpp -------------------------------------------------------------------------------- /src/crypto/scrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/scrypt.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/crypto/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/skein.c -------------------------------------------------------------------------------- /src/crypto/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sph_blake.h -------------------------------------------------------------------------------- /src/crypto/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sph_groestl.h -------------------------------------------------------------------------------- /src/crypto/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sph_jh.h -------------------------------------------------------------------------------- /src/crypto/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sph_keccak.h -------------------------------------------------------------------------------- /src/crypto/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sph_skein.h -------------------------------------------------------------------------------- /src/crypto/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/crypto/sph_types.h -------------------------------------------------------------------------------- /src/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/db.cpp -------------------------------------------------------------------------------- /src/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/db.h -------------------------------------------------------------------------------- /src/eccryptoverify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/eccryptoverify.cpp -------------------------------------------------------------------------------- /src/eccryptoverify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/eccryptoverify.h -------------------------------------------------------------------------------- /src/ecwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/ecwrapper.cpp -------------------------------------------------------------------------------- /src/ecwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/ecwrapper.h -------------------------------------------------------------------------------- /src/gm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/gm.cpp -------------------------------------------------------------------------------- /src/gm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/gm.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/init.h -------------------------------------------------------------------------------- /src/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/kernel.cpp -------------------------------------------------------------------------------- /src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/kernel.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/key.h -------------------------------------------------------------------------------- /src/keystore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/keystore.cpp -------------------------------------------------------------------------------- /src/keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/keystore.h -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/Makefile -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/README -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/TODO -------------------------------------------------------------------------------- /src/leveldb/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/WINDOWS.md -------------------------------------------------------------------------------- /src/leveldb/build_detect_platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/build_detect_platform -------------------------------------------------------------------------------- /src/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/corruption_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/corruption_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/db_bench.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dbformat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/dbformat_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/leveldb_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/leveldb_main.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/log_format.h -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/log_reader.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/log_writer.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/table_cache.cc -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/table_cache.h -------------------------------------------------------------------------------- /src/leveldb/db/version_edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/version_edit.cc -------------------------------------------------------------------------------- /src/leveldb/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/version_edit.h -------------------------------------------------------------------------------- /src/leveldb/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/version_set.cc -------------------------------------------------------------------------------- /src/leveldb/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/version_set.h -------------------------------------------------------------------------------- /src/leveldb/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/db/write_batch.cc -------------------------------------------------------------------------------- /src/leveldb/doc/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/doc/benchmark.html -------------------------------------------------------------------------------- /src/leveldb/doc/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/doc/doc.css -------------------------------------------------------------------------------- /src/leveldb/doc/impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/doc/impl.html -------------------------------------------------------------------------------- /src/leveldb/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/doc/index.html -------------------------------------------------------------------------------- /src/leveldb/doc/log_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/doc/log_format.txt -------------------------------------------------------------------------------- /src/leveldb/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/port/README -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/port/port_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/port/port_posix.cc -------------------------------------------------------------------------------- /src/leveldb/port/port_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/port/port_posix.h -------------------------------------------------------------------------------- /src/leveldb/port/port_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/port/port_win.cc -------------------------------------------------------------------------------- /src/leveldb/port/port_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/port/port_win.h -------------------------------------------------------------------------------- /src/leveldb/port/win/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/port/win/stdint.h -------------------------------------------------------------------------------- /src/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/table/block.cc -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/table/format.cc -------------------------------------------------------------------------------- /src/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/table/format.h -------------------------------------------------------------------------------- /src/leveldb/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/table/iterator.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/table/merger.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/table/merger.h -------------------------------------------------------------------------------- /src/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/table/table.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/arena_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/arena_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/bloom_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/bloom_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/cache_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/coding.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/comparator.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/env_posix.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/env_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/env_win.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/hash_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/histogram.cc -------------------------------------------------------------------------------- /src/leveldb/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/histogram.h -------------------------------------------------------------------------------- /src/leveldb/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/logging.cc -------------------------------------------------------------------------------- /src/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/logging.h -------------------------------------------------------------------------------- /src/leveldb/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/mutexlock.h -------------------------------------------------------------------------------- /src/leveldb/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/options.cc -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/status.cc -------------------------------------------------------------------------------- /src/leveldb/util/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/testharness.h -------------------------------------------------------------------------------- /src/leveldb/util/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/testutil.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldb/util/testutil.h -------------------------------------------------------------------------------- /src/leveldbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldbwrapper.cpp -------------------------------------------------------------------------------- /src/leveldbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/leveldbwrapper.h -------------------------------------------------------------------------------- /src/limitedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/limitedmap.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/main.h -------------------------------------------------------------------------------- /src/makeaxellib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/makeaxellib.sh -------------------------------------------------------------------------------- /src/masternode-payments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternode-payments.cpp -------------------------------------------------------------------------------- /src/masternode-payments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternode-payments.h -------------------------------------------------------------------------------- /src/masternode-sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternode-sync.cpp -------------------------------------------------------------------------------- /src/masternode-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternode-sync.h -------------------------------------------------------------------------------- /src/masternode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternode.cpp -------------------------------------------------------------------------------- /src/masternode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternode.h -------------------------------------------------------------------------------- /src/masternodeconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternodeconfig.cpp -------------------------------------------------------------------------------- /src/masternodeconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternodeconfig.h -------------------------------------------------------------------------------- /src/masternodeman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternodeman.cpp -------------------------------------------------------------------------------- /src/masternodeman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/masternodeman.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/miner.cpp -------------------------------------------------------------------------------- /src/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/miner.h -------------------------------------------------------------------------------- /src/mruset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/mruset.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/net.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/obfuscation-relay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/obfuscation-relay.cpp -------------------------------------------------------------------------------- /src/obfuscation-relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/obfuscation-relay.h -------------------------------------------------------------------------------- /src/obfuscation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/obfuscation.cpp -------------------------------------------------------------------------------- /src/obfuscation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/obfuscation.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/primitives/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/primitives/block.cpp -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/primitives/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/primitives/transaction.cpp -------------------------------------------------------------------------------- /src/primitives/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/primitives/transaction.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/addressbookpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/addressbookpage.cpp -------------------------------------------------------------------------------- /src/qt/addressbookpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/addressbookpage.h -------------------------------------------------------------------------------- /src/qt/addresstablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/addresstablemodel.cpp -------------------------------------------------------------------------------- /src/qt/addresstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/addresstablemodel.h -------------------------------------------------------------------------------- /src/qt/askpassphrasedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/askpassphrasedialog.cpp -------------------------------------------------------------------------------- /src/qt/askpassphrasedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/askpassphrasedialog.h -------------------------------------------------------------------------------- /src/qt/axel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/axel.cpp -------------------------------------------------------------------------------- /src/qt/axel.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/axel.qrc -------------------------------------------------------------------------------- /src/qt/axel_locale.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/axel_locale.qrc -------------------------------------------------------------------------------- /src/qt/axelstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/axelstrings.cpp -------------------------------------------------------------------------------- /src/qt/bip38tooldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/bip38tooldialog.cpp -------------------------------------------------------------------------------- /src/qt/bip38tooldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/bip38tooldialog.h -------------------------------------------------------------------------------- /src/qt/bitcoinamountfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/bitcoinamountfield.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinamountfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/bitcoinamountfield.h -------------------------------------------------------------------------------- /src/qt/bitcoingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/bitcoingui.cpp -------------------------------------------------------------------------------- /src/qt/bitcoingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/bitcoingui.h -------------------------------------------------------------------------------- /src/qt/bitcoinunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/bitcoinunits.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/bitcoinunits.h -------------------------------------------------------------------------------- /src/qt/blockexplorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/blockexplorer.cpp -------------------------------------------------------------------------------- /src/qt/blockexplorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/blockexplorer.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/coincontroldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/coincontroldialog.cpp -------------------------------------------------------------------------------- /src/qt/coincontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/coincontroldialog.h -------------------------------------------------------------------------------- /src/qt/coincontroltreewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/coincontroltreewidget.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/csvmodelwriter.cpp -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/editaddressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/editaddressdialog.cpp -------------------------------------------------------------------------------- /src/qt/editaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/editaddressdialog.h -------------------------------------------------------------------------------- /src/qt/forms/blockexplorer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/blockexplorer.ui -------------------------------------------------------------------------------- /src/qt/forms/intro.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/intro.ui -------------------------------------------------------------------------------- /src/qt/forms/masternodelist.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/masternodelist.ui -------------------------------------------------------------------------------- /src/qt/forms/multisigdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/multisigdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/openuridialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/openuridialog.ui -------------------------------------------------------------------------------- /src/qt/forms/optionsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/optionsdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/overviewpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/overviewpage.ui -------------------------------------------------------------------------------- /src/qt/forms/rpcconsole.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/rpcconsole.ui -------------------------------------------------------------------------------- /src/qt/forms/sendcoinsentry.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/sendcoinsentry.ui -------------------------------------------------------------------------------- /src/qt/forms/toolspage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/toolspage.ui -------------------------------------------------------------------------------- /src/qt/forms/tos.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/tos.ui -------------------------------------------------------------------------------- /src/qt/forms/tradingdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/forms/tradingdialog.ui -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/intro.cpp -------------------------------------------------------------------------------- /src/qt/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/intro.h -------------------------------------------------------------------------------- /src/qt/locale/axel_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_bg.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_ca.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_cs.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_da.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_de.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_en.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_en_US.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_es.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_fi.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_fr_FR.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_it.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_ja.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_ko_KR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_ko_KR.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_nl.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_pl.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_pt.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_pt_BR.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_ro_RO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_ro_RO.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_ru.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_sk.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_sv.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_tr.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_uk.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_zh_CN.ts -------------------------------------------------------------------------------- /src/qt/locale/axel_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/locale/axel_zh_TW.ts -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/macdockiconhandler.h -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/macdockiconhandler.mm -------------------------------------------------------------------------------- /src/qt/masternodelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/masternodelist.cpp -------------------------------------------------------------------------------- /src/qt/masternodelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/masternodelist.h -------------------------------------------------------------------------------- /src/qt/multisenddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/multisenddialog.cpp -------------------------------------------------------------------------------- /src/qt/multisenddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/multisenddialog.h -------------------------------------------------------------------------------- /src/qt/multisigdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/multisigdialog.cpp -------------------------------------------------------------------------------- /src/qt/multisigdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/multisigdialog.h -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/obfuscationconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/obfuscationconfig.cpp -------------------------------------------------------------------------------- /src/qt/obfuscationconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/obfuscationconfig.h -------------------------------------------------------------------------------- /src/qt/openuridialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/openuridialog.cpp -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/optionsdialog.cpp -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/paymentrequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/paymentrequest.proto -------------------------------------------------------------------------------- /src/qt/paymentrequestplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/paymentrequestplus.cpp -------------------------------------------------------------------------------- /src/qt/paymentrequestplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/paymentrequestplus.h -------------------------------------------------------------------------------- /src/qt/paymentserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/paymentserver.cpp -------------------------------------------------------------------------------- /src/qt/paymentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/paymentserver.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/peertablemodel.cpp -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/platformstyle.cpp -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/qssloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/qssloader.cpp -------------------------------------------------------------------------------- /src/qt/qssloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/qssloader.h -------------------------------------------------------------------------------- /src/qt/qvalidatedlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/qvalidatedlineedit.cpp -------------------------------------------------------------------------------- /src/qt/qvalidatedlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/qvalidatedlineedit.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/qvaluecombobox.cpp -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/receivecoinsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/receivecoinsdialog.cpp -------------------------------------------------------------------------------- /src/qt/receivecoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/receivecoinsdialog.h -------------------------------------------------------------------------------- /src/qt/receiverequestdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/receiverequestdialog.h -------------------------------------------------------------------------------- /src/qt/res/axel-qt-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/axel-qt-res.rc -------------------------------------------------------------------------------- /src/qt/res/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/css/default.css -------------------------------------------------------------------------------- /src/qt/res/css/preprod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/css/preprod.css -------------------------------------------------------------------------------- /src/qt/res/css/testnet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/css/testnet.css -------------------------------------------------------------------------------- /src/qt/res/dark/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/dark/css/dark.css -------------------------------------------------------------------------------- /src/qt/res/dark/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/dark/icons/add.png -------------------------------------------------------------------------------- /src/qt/res/dark/icons/axel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/dark/icons/axel.ico -------------------------------------------------------------------------------- /src/qt/res/dark/icons/axel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/dark/icons/axel.png -------------------------------------------------------------------------------- /src/qt/res/dark/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/dark/icons/edit.png -------------------------------------------------------------------------------- /src/qt/res/dark/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/dark/icons/eye.png -------------------------------------------------------------------------------- /src/qt/res/dark/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/dark/icons/key.png -------------------------------------------------------------------------------- /src/qt/res/dark/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/dark/icons/quit.png -------------------------------------------------------------------------------- /src/qt/res/dark/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/dark/icons/send.png -------------------------------------------------------------------------------- /src/qt/res/fonts/axel_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/fonts/axel_font.ttf -------------------------------------------------------------------------------- /src/qt/res/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/add.png -------------------------------------------------------------------------------- /src/qt/res/icons/axel.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/axel.icns -------------------------------------------------------------------------------- /src/qt/res/icons/axel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/axel.ico -------------------------------------------------------------------------------- /src/qt/res/icons/axel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/axel.png -------------------------------------------------------------------------------- /src/qt/res/icons/bittrex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/bittrex.png -------------------------------------------------------------------------------- /src/qt/res/icons/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/browse.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/clock1.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/clock2.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/clock3.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/clock4.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/clock5.png -------------------------------------------------------------------------------- /src/qt/res/icons/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/configure.png -------------------------------------------------------------------------------- /src/qt/res/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/edit.png -------------------------------------------------------------------------------- /src/qt/res/icons/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/editcopy.png -------------------------------------------------------------------------------- /src/qt/res/icons/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/editpaste.png -------------------------------------------------------------------------------- /src/qt/res/icons/explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/explorer.png -------------------------------------------------------------------------------- /src/qt/res/icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/export.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/eye.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/eye_minus.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/eye_plus.png -------------------------------------------------------------------------------- /src/qt/res/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/filesave.png -------------------------------------------------------------------------------- /src/qt/res/icons/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/history.png -------------------------------------------------------------------------------- /src/qt/res/icons/icon_www.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/icon_www.png -------------------------------------------------------------------------------- /src/qt/res/icons/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/import.png -------------------------------------------------------------------------------- /src/qt/res/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/key.png -------------------------------------------------------------------------------- /src/qt/res/icons/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/lock_open.png -------------------------------------------------------------------------------- /src/qt/res/icons/notsynced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/notsynced.png -------------------------------------------------------------------------------- /src/qt/res/icons/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/overview.png -------------------------------------------------------------------------------- /src/qt/res/icons/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/qrcode.png -------------------------------------------------------------------------------- /src/qt/res/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/quit.png -------------------------------------------------------------------------------- /src/qt/res/icons/receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/receive.png -------------------------------------------------------------------------------- /src/qt/res/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/refresh.png -------------------------------------------------------------------------------- /src/qt/res/icons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/remove.png -------------------------------------------------------------------------------- /src/qt/res/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/send.png -------------------------------------------------------------------------------- /src/qt/res/icons/synced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/synced.png -------------------------------------------------------------------------------- /src/qt/res/icons/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/tools.png -------------------------------------------------------------------------------- /src/qt/res/icons/trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/trade.png -------------------------------------------------------------------------------- /src/qt/res/icons/tx_inout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/tx_inout.png -------------------------------------------------------------------------------- /src/qt/res/icons/tx_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/tx_input.png -------------------------------------------------------------------------------- /src/qt/res/icons/tx_mined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/tx_mined.png -------------------------------------------------------------------------------- /src/qt/res/icons/tx_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/icons/tx_output.png -------------------------------------------------------------------------------- /src/qt/res/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/images/about.png -------------------------------------------------------------------------------- /src/qt/res/images/checkbox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/images/checkbox.zip -------------------------------------------------------------------------------- /src/qt/res/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/res/images/splash.png -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/sendcoinsdialog.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/sendcoinsdialog.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/sendcoinsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/test/test_main.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/test/uritests.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/toolspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/toolspage.cpp -------------------------------------------------------------------------------- /src/qt/toolspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/toolspage.h -------------------------------------------------------------------------------- /src/qt/tos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/tos.cpp -------------------------------------------------------------------------------- /src/qt/tos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/tos.h -------------------------------------------------------------------------------- /src/qt/trafficgraphwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/trafficgraphwidget.cpp -------------------------------------------------------------------------------- /src/qt/trafficgraphwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/trafficgraphwidget.h -------------------------------------------------------------------------------- /src/qt/transactiondesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/transactiondesc.cpp -------------------------------------------------------------------------------- /src/qt/transactiondesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/transactiondesc.h -------------------------------------------------------------------------------- /src/qt/transactiondescdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/transactiondescdialog.h -------------------------------------------------------------------------------- /src/qt/transactionrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/transactionrecord.cpp -------------------------------------------------------------------------------- /src/qt/transactionrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/transactionrecord.h -------------------------------------------------------------------------------- /src/qt/transactiontablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/transactiontablemodel.h -------------------------------------------------------------------------------- /src/qt/transactionview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/transactionview.cpp -------------------------------------------------------------------------------- /src/qt/transactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/transactionview.h -------------------------------------------------------------------------------- /src/qt/urlrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/urlrequest.cpp -------------------------------------------------------------------------------- /src/qt/urlrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/urlrequest.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/utilitydialog.cpp -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/qt/winshutdownmonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/winshutdownmonitor.cpp -------------------------------------------------------------------------------- /src/qt/winshutdownmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/qt/winshutdownmonitor.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/random.h -------------------------------------------------------------------------------- /src/resck/resck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/resck/resck.h -------------------------------------------------------------------------------- /src/resck/resckparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/resck/resckparam.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverse_iterate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/reverse_iterate.h -------------------------------------------------------------------------------- /src/rpcblockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcblockchain.cpp -------------------------------------------------------------------------------- /src/rpcclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcclient.cpp -------------------------------------------------------------------------------- /src/rpcclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcclient.h -------------------------------------------------------------------------------- /src/rpcdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcdump.cpp -------------------------------------------------------------------------------- /src/rpcmasternode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcmasternode.cpp -------------------------------------------------------------------------------- /src/rpcmining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcmining.cpp -------------------------------------------------------------------------------- /src/rpcmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcmisc.cpp -------------------------------------------------------------------------------- /src/rpcnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcnet.cpp -------------------------------------------------------------------------------- /src/rpcprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcprotocol.cpp -------------------------------------------------------------------------------- /src/rpcprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcprotocol.h -------------------------------------------------------------------------------- /src/rpcrawtransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcrawtransaction.cpp -------------------------------------------------------------------------------- /src/rpcserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcserver.cpp -------------------------------------------------------------------------------- /src/rpcserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcserver.h -------------------------------------------------------------------------------- /src/rpcwallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/rpcwallet.cpp -------------------------------------------------------------------------------- /src/script/bitcoinconsensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/bitcoinconsensus.h -------------------------------------------------------------------------------- /src/script/interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/interpreter.cpp -------------------------------------------------------------------------------- /src/script/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/interpreter.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/script_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/script_error.cpp -------------------------------------------------------------------------------- /src/script/script_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/script_error.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/standard.cpp -------------------------------------------------------------------------------- /src/script/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/script/standard.h -------------------------------------------------------------------------------- /src/secp256k1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/.travis.yml -------------------------------------------------------------------------------- /src/secp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/COPYING -------------------------------------------------------------------------------- /src/secp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/Makefile.am -------------------------------------------------------------------------------- /src/secp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/README.md -------------------------------------------------------------------------------- /src/secp256k1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/TODO -------------------------------------------------------------------------------- /src/secp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /src/secp256k1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/configure.ac -------------------------------------------------------------------------------- /src/secp256k1/nasm_lt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/nasm_lt.sh -------------------------------------------------------------------------------- /src/secp256k1/src/bench_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/bench_inv.c -------------------------------------------------------------------------------- /src/secp256k1/src/bench_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/bench_sign.c -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/ecdsa_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/eckey.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/eckey_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/ecmult.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecmult_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/ecmult_gen.h -------------------------------------------------------------------------------- /src/secp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/field.h -------------------------------------------------------------------------------- /src/secp256k1/src/field_5x52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/field_5x52.h -------------------------------------------------------------------------------- /src/secp256k1/src/field_gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/field_gmp.h -------------------------------------------------------------------------------- /src/secp256k1/src/field_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/field_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/group.h -------------------------------------------------------------------------------- /src/secp256k1/src/group_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/group_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/num.h -------------------------------------------------------------------------------- /src/secp256k1/src/num_gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/num_gmp.h -------------------------------------------------------------------------------- /src/secp256k1/src/num_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/num_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/scalar.h -------------------------------------------------------------------------------- /src/secp256k1/src/secp256k1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/secp256k1.c -------------------------------------------------------------------------------- /src/secp256k1/src/testrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/testrand.h -------------------------------------------------------------------------------- /src/secp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/tests.c -------------------------------------------------------------------------------- /src/secp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/secp256k1/src/util.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/spork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/spork.cpp -------------------------------------------------------------------------------- /src/spork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/spork.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/swifttx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/swifttx.cpp -------------------------------------------------------------------------------- /src/swifttx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/swifttx.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/Checkpoints_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/Checkpoints_tests.cpp -------------------------------------------------------------------------------- /src/test/DoS_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/DoS_tests.cpp -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/accounting_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/accounting_tests.cpp -------------------------------------------------------------------------------- /src/test/alert_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/alert_tests.cpp -------------------------------------------------------------------------------- /src/test/allocator_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/allocator_tests.cpp -------------------------------------------------------------------------------- /src/test/base32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/base32_tests.cpp -------------------------------------------------------------------------------- /src/test/base58_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/base58_tests.cpp -------------------------------------------------------------------------------- /src/test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/base64_tests.cpp -------------------------------------------------------------------------------- /src/test/bctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/bctest.py -------------------------------------------------------------------------------- /src/test/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/bignum.h -------------------------------------------------------------------------------- /src/test/bip32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/bip32_tests.cpp -------------------------------------------------------------------------------- /src/test/bitcoin-util-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/bitcoin-util-test.py -------------------------------------------------------------------------------- /src/test/bloom_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/bloom_tests.cpp -------------------------------------------------------------------------------- /src/test/buildenv.py.in: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | exeext="@EXEEXT@" 3 | -------------------------------------------------------------------------------- /src/test/checkblock_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/checkblock_tests.cpp -------------------------------------------------------------------------------- /src/test/coins_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/coins_tests.cpp -------------------------------------------------------------------------------- /src/test/compress_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/compress_tests.cpp -------------------------------------------------------------------------------- /src/test/crypto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/crypto_tests.cpp -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/data/alertTests.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/alertTests.raw -------------------------------------------------------------------------------- /src/test/data/blanktx.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/blanktx.hex -------------------------------------------------------------------------------- /src/test/data/sighash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/sighash.json -------------------------------------------------------------------------------- /src/test/data/tx394b54bb.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/tx394b54bb.hex -------------------------------------------------------------------------------- /src/test/data/tx_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/tx_invalid.json -------------------------------------------------------------------------------- /src/test/data/tx_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/tx_valid.json -------------------------------------------------------------------------------- /src/test/data/txcreate1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/txcreate1.hex -------------------------------------------------------------------------------- /src/test/data/txcreate2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/txcreate2.hex -------------------------------------------------------------------------------- /src/test/data/txcreatesign.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/data/txcreatesign.hex -------------------------------------------------------------------------------- /src/test/getarg_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/getarg_tests.cpp -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/main_tests.cpp -------------------------------------------------------------------------------- /src/test/mempool_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/mempool_tests.cpp -------------------------------------------------------------------------------- /src/test/miner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/miner_tests.cpp -------------------------------------------------------------------------------- /src/test/mruset_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/mruset_tests.cpp -------------------------------------------------------------------------------- /src/test/multisig_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/multisig_tests.cpp -------------------------------------------------------------------------------- /src/test/netbase_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/netbase_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_wallet_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/rpc_wallet_tests.cpp -------------------------------------------------------------------------------- /src/test/sanity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/sanity_tests.cpp -------------------------------------------------------------------------------- /src/test/script_P2SH_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/script_P2SH_tests.cpp -------------------------------------------------------------------------------- /src/test/script_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/script_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/scriptnum_tests.cpp -------------------------------------------------------------------------------- /src/test/serialize_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/serialize_tests.cpp -------------------------------------------------------------------------------- /src/test/sighash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/sighash_tests.cpp -------------------------------------------------------------------------------- /src/test/sigopcount_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/sigopcount_tests.cpp -------------------------------------------------------------------------------- /src/test/skiplist_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/skiplist_tests.cpp -------------------------------------------------------------------------------- /src/test/test_axel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/test_axel.cpp -------------------------------------------------------------------------------- /src/test/timedata_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/timedata_tests.cpp -------------------------------------------------------------------------------- /src/test/transaction_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/transaction_tests.cpp -------------------------------------------------------------------------------- /src/test/uint256_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/uint256_tests.cpp -------------------------------------------------------------------------------- /src/test/univalue_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/univalue_tests.cpp -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/test/wallet_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/test/wallet_tests.cpp -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/ui_interface.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/uint512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/uint512.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/.travis.yml -------------------------------------------------------------------------------- /src/univalue/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/COPYING -------------------------------------------------------------------------------- /src/univalue/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/Makefile.am -------------------------------------------------------------------------------- /src/univalue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/README.md -------------------------------------------------------------------------------- /src/univalue/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/TODO -------------------------------------------------------------------------------- /src/univalue/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/autogen.sh -------------------------------------------------------------------------------- /src/univalue/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/configure.ac -------------------------------------------------------------------------------- /src/univalue/gen/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/gen/gen.cpp -------------------------------------------------------------------------------- /src/univalue/lib/univalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/lib/univalue.cpp -------------------------------------------------------------------------------- /src/univalue/test/fail1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/fail1.json -------------------------------------------------------------------------------- /src/univalue/test/fail10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/fail10.json -------------------------------------------------------------------------------- /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/fail18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/fail18.json -------------------------------------------------------------------------------- /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/fail26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/fail26.json -------------------------------------------------------------------------------- /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/fail3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/fail3.json -------------------------------------------------------------------------------- /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/fail35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/fail35.json -------------------------------------------------------------------------------- /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/fail40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/fail40.json -------------------------------------------------------------------------------- /src/univalue/test/fail41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/fail41.json -------------------------------------------------------------------------------- /src/univalue/test/fail42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/fail42.json -------------------------------------------------------------------------------- /src/univalue/test/fail44.json: -------------------------------------------------------------------------------- 1 | "This file ends without a newline or close-quote. -------------------------------------------------------------------------------- /src/univalue/test/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /src/univalue/test/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /src/univalue/test/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /src/univalue/test/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /src/univalue/test/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /src/univalue/test/no_nul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/no_nul.cpp -------------------------------------------------------------------------------- /src/univalue/test/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/object.cpp -------------------------------------------------------------------------------- /src/univalue/test/pass1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/pass1.json -------------------------------------------------------------------------------- /src/univalue/test/pass2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/pass2.json -------------------------------------------------------------------------------- /src/univalue/test/pass3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/pass3.json -------------------------------------------------------------------------------- /src/univalue/test/round1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/univalue/test/round1.json -------------------------------------------------------------------------------- /src/univalue/test/round2.json: -------------------------------------------------------------------------------- 1 | ["a§■𐎒𝅘𝅥𝅯"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/round3.json: -------------------------------------------------------------------------------- 1 | "abcdefghijklmnopqrstuvwxyz" 2 | -------------------------------------------------------------------------------- /src/univalue/test/round4.json: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /src/univalue/test/round5.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /src/univalue/test/round6.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /src/univalue/test/round7.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/util.h -------------------------------------------------------------------------------- /src/utilmoneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/utilmoneystr.cpp -------------------------------------------------------------------------------- /src/utilmoneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/utilmoneystr.h -------------------------------------------------------------------------------- /src/utilstrencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/utilstrencodings.cpp -------------------------------------------------------------------------------- /src/utilstrencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/utilstrencodings.h -------------------------------------------------------------------------------- /src/utiltime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/utiltime.cpp -------------------------------------------------------------------------------- /src/utiltime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/utiltime.h -------------------------------------------------------------------------------- /src/validationinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/validationinterface.cpp -------------------------------------------------------------------------------- /src/validationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/validationinterface.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/version.h -------------------------------------------------------------------------------- /src/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/wallet.cpp -------------------------------------------------------------------------------- /src/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/wallet.h -------------------------------------------------------------------------------- /src/wallet_ismine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/wallet_ismine.cpp -------------------------------------------------------------------------------- /src/wallet_ismine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/wallet_ismine.h -------------------------------------------------------------------------------- /src/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/walletdb.cpp -------------------------------------------------------------------------------- /src/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/walletdb.h -------------------------------------------------------------------------------- /src/zmq/zmqabstractnotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/zmq/zmqabstractnotifier.h -------------------------------------------------------------------------------- /src/zmq/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/zmq/zmqconfig.h -------------------------------------------------------------------------------- /src/zmq/zmqpublishnotifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/zmq/zmqpublishnotifier.cpp -------------------------------------------------------------------------------- /src/zmq/zmqpublishnotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/src/zmq/zmqpublishnotifier.h -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/README.md -------------------------------------------------------------------------------- /test/config.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/config.ini.in -------------------------------------------------------------------------------- /test/functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/README.md -------------------------------------------------------------------------------- /test/functional/p2p_leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/p2p_leak.py -------------------------------------------------------------------------------- /test/functional/p2p_mempool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/p2p_mempool.py -------------------------------------------------------------------------------- /test/functional/rpc_bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/rpc_bind.py -------------------------------------------------------------------------------- /test/functional/rpc_bip38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/rpc_bip38.py -------------------------------------------------------------------------------- /test/functional/rpc_budget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/rpc_budget.py -------------------------------------------------------------------------------- /test/functional/rpc_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/rpc_net.py -------------------------------------------------------------------------------- /test/functional/rpc_spork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/rpc_spork.py -------------------------------------------------------------------------------- /test/functional/rpc_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/rpc_users.py -------------------------------------------------------------------------------- /test/functional/test_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/test_runner.py -------------------------------------------------------------------------------- /test/functional/wallet_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/wallet_dump.py -------------------------------------------------------------------------------- /test/functional/wallet_hd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/functional/wallet_hd.py -------------------------------------------------------------------------------- /test/lint/lint-qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/lint/lint-qt.sh -------------------------------------------------------------------------------- /test/util/bitcoin-util-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/util/bitcoin-util-test.py -------------------------------------------------------------------------------- /test/util/data/blanktxv1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/util/data/blanktxv1.hex -------------------------------------------------------------------------------- /test/util/data/blanktxv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/util/data/blanktxv1.json -------------------------------------------------------------------------------- /test/util/data/tx394b54bb.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/util/data/tx394b54bb.hex -------------------------------------------------------------------------------- /test/util/data/txcreate1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/util/data/txcreate1.hex -------------------------------------------------------------------------------- /test/util/data/txcreate1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/util/data/txcreate1.json -------------------------------------------------------------------------------- /test/util/data/txcreate2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/util/data/txcreate2.hex -------------------------------------------------------------------------------- /test/util/data/txcreate2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/util/data/txcreate2.json -------------------------------------------------------------------------------- /test/util/rpcauth-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelnetwork/AXEL/HEAD/test/util/rpcauth-test.py --------------------------------------------------------------------------------