├── .gitattributes ├── .gitignore ├── .travis.yml ├── .tx └── config ├── CONTRIBUTING.md ├── COPYING ├── INSTALL ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── contrib ├── README.md ├── debian │ ├── README.md │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── examples │ │ └── safe.conf │ ├── gbp.conf │ ├── manpages │ │ ├── safe-cli.1 │ │ ├── safe-qt.1 │ │ ├── safe.conf.5 │ │ └── safed.1 │ ├── patches │ │ ├── README │ │ └── series │ ├── rules │ ├── safe-qt.desktop │ ├── safe-qt.install │ ├── safe-qt.lintian-overrides │ ├── safe-qt.protocol │ ├── safe-tx.install │ ├── safed.bash-completion │ ├── safed.examples │ ├── safed.install │ ├── safed.lintian-overrides │ ├── safed.manpages │ ├── source │ │ └── format │ └── watch ├── devtools │ ├── README.md │ ├── clang-format.py │ ├── fix-copyright-headers.py │ ├── git-subtree-check.sh │ ├── github-merge.sh │ ├── optimize-pngs.py │ ├── security-check.py │ ├── symbol-check.py │ ├── test-security-check.py │ └── update-translations.py ├── gitian-descriptors │ ├── README.md │ ├── gitian-linux.yml │ ├── gitian-osx-signer.yml │ ├── gitian-osx.yml │ ├── gitian-rpi2.yml │ ├── gitian-win-signer.yml │ └── gitian-win.yml ├── gitian-downloader │ ├── aschildbach-key.pgp │ ├── bluematt-key.pgp │ ├── btcdrak-key.pgp │ ├── cdecker-key.pgp │ ├── centaur1-key.pgp │ ├── cfields-key.pgp │ ├── devrandom-key.pgp │ ├── erkmos.pgp │ ├── fanquake-key.pgp │ ├── gavinandresen-key.pgp │ ├── jonasschnelli-key.pgp │ ├── laanwj-key.pgp │ ├── luke-jr-key.pgp │ ├── michagogo-key.pgp │ ├── petertodd-key.pgp │ ├── prab-key.pgp │ ├── sipa-key.pgp │ ├── tcatm-key.pgp │ └── wtogami-key.pgp ├── init │ ├── README.md │ ├── org.safe.safed.plist │ ├── safed.conf │ ├── safed.init │ ├── safed.openrc │ ├── safed.openrcconf │ └── safed.service ├── linearize │ ├── README.md │ ├── example-linearize-testnet.cfg │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── Base.lproj │ │ └── InfoPlist.strings │ ├── DS_Store │ ├── LICENSE │ ├── README.md │ ├── background.png │ ├── background.psd │ ├── background.tiff │ ├── background@2x.png │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── fancy.plist │ └── macdeployqtplus ├── qos │ ├── README.md │ └── tc.sh ├── qt_translations.py ├── safe-qt.pro ├── safed.bash-completion ├── seeds │ ├── README.md │ ├── generate-seeds.py │ ├── makeseeds.py │ ├── nodes_main.txt │ └── nodes_test.txt ├── spendfrom │ ├── README.md │ ├── setup.py │ └── spendfrom.py ├── testgen │ ├── README.md │ ├── base58.py │ └── gen_base58_test_vectors.py ├── tidy_datadir.sh ├── verify-commits │ ├── allow-revsig-commits │ ├── gpg.sh │ ├── pre-push-hook.sh │ ├── trusted-git-root │ ├── trusted-keys │ └── verify-commits.sh ├── verifysfbinaries │ ├── README.md │ └── verify.sh └── zmq │ └── zmq_sub.py ├── depends ├── .gitignore ├── Makefile ├── README.md ├── builders │ ├── darwin.mk │ ├── default.mk │ └── linux.mk ├── config.guess ├── config.site.in ├── config.sub ├── description.md ├── funcs.mk ├── hosts │ ├── darwin.mk │ ├── default.mk │ ├── linux.mk │ └── mingw32.mk ├── packages.md ├── packages │ ├── bdb.mk │ ├── boost.mk │ ├── dbus.mk │ ├── expat.mk │ ├── fontconfig.mk │ ├── freetype.mk │ ├── libICE.mk │ ├── libSM.mk │ ├── libX11.mk │ ├── libXau.mk │ ├── libXext.mk │ ├── libevent.mk │ ├── libxcb.mk │ ├── miniupnpc.mk │ ├── native_ccache.mk │ ├── native_cctools.mk │ ├── native_cdrkit.mk │ ├── native_comparisontool.mk │ ├── native_libdmg-hfsplus.mk │ ├── native_protobuf.mk │ ├── openssl.mk │ ├── packages.mk │ ├── protobuf.mk │ ├── qrencode.mk │ ├── qt.mk │ ├── qt46.mk │ ├── xcb_proto.mk │ ├── xextproto.mk │ ├── xproto.mk │ ├── xtrans.mk │ └── zeromq.mk └── patches │ ├── boost │ ├── darwin_boost_atomic-1.patch │ ├── darwin_boost_atomic-2.patch │ └── gcc_5_no_cxx11.patch │ ├── native_cdrkit │ └── cdrkit-deterministic.patch │ ├── qt │ ├── fix-xcb-include-order.patch │ ├── mac-qmake.conf │ ├── mingw-uuidof.patch │ └── pidlist_absolute.patch │ └── qt46 │ └── stlfix.patch ├── doc ├── Doxyfile ├── README.md ├── README_osx.txt ├── README_windows.txt ├── REST-interface.md ├── assets-attribution.md ├── bips.md ├── bitcoin_logo_doxygen.png ├── build-openbsd.md ├── build-osx.md ├── build-unix.md ├── build-windows.md ├── developer-notes.md ├── dnsseed-policy.md ├── files.md ├── gitian-building.md ├── gitian-building │ ├── create_new_vm.png │ ├── create_vm_file_location_size.png │ ├── create_vm_hard_disk.png │ ├── create_vm_hard_disk_file_type.png │ ├── create_vm_memsize.png │ ├── create_vm_storage_physical_hard_disk.png │ ├── debian_install_10_configure_clock.png │ ├── debian_install_11_partition_disks.png │ ├── debian_install_12_choose_disk.png │ ├── debian_install_14_finish.png │ ├── debian_install_15_write_changes.png │ ├── debian_install_16_choose_a_mirror.png │ ├── debian_install_18_proxy_settings.png │ ├── debian_install_19_software_selection.png │ ├── debian_install_1_boot_menu.png │ ├── debian_install_20_install_grub.png │ ├── debian_install_21_install_grub_bootloader.png │ ├── debian_install_22_finish_installation.png │ ├── debian_install_2_select_a_language.png │ ├── debian_install_3_select_location.png │ ├── debian_install_4_configure_keyboard.png │ ├── debian_install_5_configure_the_network.png │ ├── debian_install_6_domain_name.png │ ├── debian_install_6a_set_up_root_password.png │ ├── debian_install_7_set_up_user_fullname.png │ ├── debian_install_8_set_up_username.png │ ├── debian_install_9_user_password.png │ ├── debian_root_login.png │ ├── network_settings.png │ ├── port_forwarding_rules.png │ └── select_startup_disk.png ├── guide-startmany.md ├── init.md ├── instantsend.md ├── keepass.md ├── masternode-budget.md ├── masternode_conf.md ├── multiwallet-qt.md ├── reduce-traffic.md ├── release-notes.md ├── release-notes │ ├── bitcoin │ │ ├── release-notes-0.10.0.md │ │ ├── release-notes-0.10.1.md │ │ ├── release-notes-0.10.2.md │ │ ├── release-notes-0.10.3.md │ │ ├── release-notes-0.11.0.md │ │ ├── release-notes-0.11.1.md │ │ ├── release-notes-0.12.0.md │ │ ├── release-notes-0.12.1.md │ │ ├── release-notes-0.3.12.md │ │ ├── release-notes-0.3.13.md │ │ ├── release-notes-0.3.14.md │ │ ├── release-notes-0.3.15.md │ │ ├── release-notes-0.3.16.md │ │ ├── release-notes-0.3.17.md │ │ ├── release-notes-0.3.18.md │ │ ├── release-notes-0.3.19.md │ │ ├── release-notes-0.3.20.1.md │ │ ├── release-notes-0.3.20.2.md │ │ ├── release-notes-0.3.20.md │ │ ├── release-notes-0.3.21.md │ │ ├── release-notes-0.3.22.md │ │ ├── release-notes-0.3.23.md │ │ ├── release-notes-0.3.24.md │ │ ├── release-notes-0.4.0.md │ │ ├── release-notes-0.4.1.md │ │ ├── release-notes-0.4.2.md │ │ ├── release-notes-0.4.3.md │ │ ├── release-notes-0.4.4.md │ │ ├── release-notes-0.4.5.md │ │ ├── release-notes-0.4.6.md │ │ ├── release-notes-0.5.0.md │ │ ├── release-notes-0.5.1.md │ │ ├── release-notes-0.5.2.md │ │ ├── release-notes-0.5.3.md │ │ ├── release-notes-0.5.4.md │ │ ├── release-notes-0.5.5.md │ │ ├── release-notes-0.6.0.md │ │ ├── release-notes-0.6.1.md │ │ ├── release-notes-0.6.2.md │ │ ├── release-notes-0.6.3.md │ │ ├── release-notes-0.7.0.md │ │ ├── release-notes-0.7.1.md │ │ ├── release-notes-0.7.2.md │ │ ├── release-notes-0.8.0.md │ │ ├── release-notes-0.8.1.md │ │ ├── release-notes-0.8.2.md │ │ ├── release-notes-0.8.3.md │ │ ├── release-notes-0.8.4.md │ │ ├── release-notes-0.8.5.md │ │ ├── release-notes-0.8.6.md │ │ ├── release-notes-0.9.1.md │ │ ├── release-notes-0.9.2.1.md │ │ ├── release-notes-0.9.2.md │ │ ├── release-notes-0.9.3.md │ │ ├── release-notes-0.9.4.md │ │ └── release-notes-0.9.5.md │ └── safe │ │ └── release-notes-0.1.0.md ├── release-process.md ├── safe-chain-name.md ├── shared-libraries.md ├── tor.md ├── translation_process.md ├── translation_strings_policy.md ├── travis-ci.txt ├── unit-tests.md └── zmq.md ├── libsafeconsensus.pc.in ├── qa ├── README.md ├── pull-tester │ ├── rpc-tests.py │ ├── run-bitcoind-for-test.sh.in │ └── tests_config.py.in └── rpc-tests │ ├── .gitignore │ ├── README.md │ ├── abandonconflict.py │ ├── addressindex.py │ ├── bip65-cltv-p2p.py │ ├── bip65-cltv.py │ ├── bip68-112-113-p2p.py │ ├── bip68-sequence.py │ ├── bip9-softforks.py │ ├── bipdersig-p2p.py │ ├── bipdersig.py │ ├── blockchain.py │ ├── decodescript.py │ ├── disablewallet.py │ ├── forknotify.py │ ├── fundrawtransaction-hd.py │ ├── fundrawtransaction.py │ ├── getblocktemplate_longpoll.py │ ├── getblocktemplate_proposals.py │ ├── getchaintips.py │ ├── httpbasics.py │ ├── invalidateblock.py │ ├── invalidblockrequest.py │ ├── invalidtxrequest.py │ ├── keypool-hd.py │ ├── keypool.py │ ├── listtransactions.py │ ├── maxblocksinflight.py │ ├── maxuploadtarget.py │ ├── mempool_limit.py │ ├── mempool_packages.py │ ├── mempool_reorg.py │ ├── mempool_resurrect_test.py │ ├── mempool_spendcoinbase.py │ ├── merkle_blocks.py │ ├── multi_rpc.py │ ├── nodehandling.py │ ├── p2p-acceptblock.py │ ├── p2p-fullblocktest.py │ ├── p2p-versionbits-warning.py │ ├── prioritise_transaction.py │ ├── proxy_test.py │ ├── pruning.py │ ├── rawtransactions.py │ ├── receivedby.py │ ├── reindex.py │ ├── replace-by-fee.py │ ├── rest.py │ ├── rpcbind_test.py │ ├── sendheaders.py │ ├── signrawtransactions.py │ ├── smartfees.py │ ├── spentindex.py │ ├── test_framework │ ├── __init__.py │ ├── authproxy.py │ ├── bignum.py │ ├── blockstore.py │ ├── blocktools.py │ ├── comptool.py │ ├── coverage.py │ ├── key.py │ ├── mininode.py │ ├── netutil.py │ ├── script.py │ ├── socks5.py │ ├── test_framework.py │ └── util.py │ ├── timestampindex.py │ ├── txindex.py │ ├── txn_clone.py │ ├── txn_doublespend.py │ ├── wallet-hd.py │ ├── wallet.py │ ├── walletbackup.py │ ├── zapwallettxes.py │ └── zmq_test.py ├── safe-docs ├── img │ ├── pic1.png │ └── pic2.png ├── protocol-documentation.md ├── safe-distribution-cn.md └── safe-distribution.md ├── share ├── certs │ ├── BitcoinFoundation_Apple_Cert.pem │ ├── BitcoinFoundation_Comodo_Cert.pem │ └── PrivateKeyNotes.md ├── genbuild.sh ├── pixmaps │ ├── bitcoin.ico │ ├── nsis-header.bmp │ ├── nsis-wizard.bmp │ ├── safe128.png │ ├── safe128.xpm │ ├── safe16.png │ ├── safe16.xpm │ ├── safe256.png │ ├── safe256.xpm │ ├── safe32.png │ ├── safe32.xpm │ ├── safe64.png │ └── safe64.xpm ├── qt │ ├── Info.plist.in │ ├── extract_strings_qt.py │ └── protobuf.pri ├── rpcuser │ ├── README.md │ └── rpcuser.py └── setup.nsi.in └── src ├── .clang-format ├── Makefile.am ├── Makefile.bench.include ├── Makefile.leveldb.include ├── Makefile.qt.include ├── Makefile.qttest.include ├── Makefile.test.include ├── activemasternode.cpp ├── activemasternode.h ├── addrdb.cpp ├── addrdb.h ├── addressindex.h ├── addrman.cpp ├── addrman.h ├── alert.cpp ├── alert.h ├── amount.cpp ├── amount.h ├── app ├── app.cpp ├── app.h ├── app.proto ├── rpcapp.cpp └── rpcasset.cpp ├── arith_uint256.cpp ├── arith_uint256.h ├── base58.cpp ├── base58.h ├── bench ├── .gitignore ├── Examples.cpp ├── bench.cpp ├── bench.h └── bench_safe.cpp ├── bip39.cpp ├── bip39.h ├── bip39_english.h ├── bloom.cpp ├── bloom.h ├── cachemap.h ├── cachemultimap.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 ├── byteswap.h ├── endian.h ├── glibc_compat.cpp ├── glibc_sanity.cpp ├── glibcxx_sanity.cpp ├── sanity.h └── strnlen.cpp ├── compressor.cpp ├── compressor.h ├── config ├── .empty └── safe-chain.h ├── consensus ├── consensus.h ├── merkle.cpp ├── merkle.h ├── params.h └── validation.h ├── core_io.h ├── core_memusage.h ├── core_read.cpp ├── core_write.cpp ├── crypto ├── aes_helper.c ├── blake.c ├── bmw.c ├── common.h ├── cubehash.c ├── echo.c ├── groestl.c ├── hmac_sha256.cpp ├── hmac_sha256.h ├── hmac_sha512.cpp ├── hmac_sha512.h ├── jh.c ├── keccak.c ├── luffa.c ├── ripemd160.cpp ├── ripemd160.h ├── sha1.cpp ├── sha1.h ├── sha256.cpp ├── sha256.h ├── sha512.cpp ├── sha512.h ├── shavite.c ├── simd.c ├── skein.c ├── sph_blake.h ├── sph_bmw.h ├── sph_cubehash.h ├── sph_echo.h ├── sph_groestl.h ├── sph_jh.h ├── sph_keccak.h ├── sph_luffa.h ├── sph_shavite.h ├── sph_simd.h ├── sph_skein.h └── sph_types.h ├── darksend-relay.cpp ├── darksend-relay.h ├── dbwrapper.cpp ├── dbwrapper.h ├── drafted ├── governance-categories.h ├── governance-classes.h ├── governance-keys.cpp ├── governance-keys.h ├── governance-types.cpp ├── governance-types.h └── governance.new.cpp ├── dsnotificationinterface.cpp ├── dsnotificationinterface.h ├── flat-database.h ├── governance-classes.cpp ├── governance-classes.h ├── governance-exceptions.h ├── governance-misc.h ├── governance-object.cpp ├── governance-object.h ├── governance-validators.cpp ├── governance-validators.h ├── governance-vote.cpp ├── governance-vote.h ├── governance-votedb.cpp ├── governance-votedb.h ├── governance.cpp ├── governance.h ├── hash.cpp ├── hash.h ├── hdchain.cpp ├── hdchain.h ├── httprpc.cpp ├── httprpc.h ├── httpserver.cpp ├── httpserver.h ├── init.cpp ├── init.h ├── instantx.cpp ├── instantx.h ├── keepass.cpp ├── keepass.h ├── key.cpp ├── key.h ├── keystore.cpp ├── keystore.h ├── leveldb ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NEWS ├── README ├── README.md ├── TODO ├── WINDOWS.md ├── build_detect_platform ├── db │ ├── autocompact_test.cc │ ├── builder.cc │ ├── builder.h │ ├── c.cc │ ├── c_test.c │ ├── corruption_test.cc │ ├── db_bench.cc │ ├── db_impl.cc │ ├── db_impl.h │ ├── db_iter.cc │ ├── db_iter.h │ ├── db_test.cc │ ├── dbformat.cc │ ├── dbformat.h │ ├── dbformat_test.cc │ ├── dumpfile.cc │ ├── filename.cc │ ├── filename.h │ ├── filename_test.cc │ ├── leveldb_main.cc │ ├── log_format.h │ ├── log_reader.cc │ ├── log_reader.h │ ├── log_test.cc │ ├── log_writer.cc │ ├── log_writer.h │ ├── memtable.cc │ ├── memtable.h │ ├── repair.cc │ ├── skiplist.h │ ├── skiplist_test.cc │ ├── snapshot.h │ ├── table_cache.cc │ ├── table_cache.h │ ├── version_edit.cc │ ├── version_edit.h │ ├── version_edit_test.cc │ ├── version_set.cc │ ├── version_set.h │ ├── version_set_test.cc │ ├── write_batch.cc │ ├── write_batch_internal.h │ └── write_batch_test.cc ├── doc │ ├── bench │ │ ├── db_bench_sqlite3.cc │ │ └── db_bench_tree_db.cc │ ├── benchmark.html │ ├── doc.css │ ├── impl.html │ ├── index.html │ ├── log_format.txt │ └── table_format.txt ├── helpers │ └── memenv │ │ ├── memenv.cc │ │ ├── memenv.h │ │ └── memenv_test.cc ├── include │ └── leveldb │ │ ├── c.h │ │ ├── cache.h │ │ ├── comparator.h │ │ ├── db.h │ │ ├── dumpfile.h │ │ ├── env.h │ │ ├── filter_policy.h │ │ ├── iterator.h │ │ ├── options.h │ │ ├── slice.h │ │ ├── status.h │ │ ├── table.h │ │ ├── table_builder.h │ │ └── write_batch.h ├── issues │ ├── issue178_test.cc │ └── issue200_test.cc ├── port │ ├── README │ ├── atomic_pointer.h │ ├── port.h │ ├── port_example.h │ ├── port_posix.cc │ ├── port_posix.h │ ├── port_win.cc │ ├── port_win.h │ ├── thread_annotations.h │ └── win │ │ └── stdint.h ├── table │ ├── block.cc │ ├── block.h │ ├── block_builder.cc │ ├── block_builder.h │ ├── filter_block.cc │ ├── filter_block.h │ ├── filter_block_test.cc │ ├── format.cc │ ├── format.h │ ├── iterator.cc │ ├── iterator_wrapper.h │ ├── merger.cc │ ├── merger.h │ ├── table.cc │ ├── table_builder.cc │ ├── table_test.cc │ ├── two_level_iterator.cc │ └── two_level_iterator.h └── util │ ├── arena.cc │ ├── arena.h │ ├── arena_test.cc │ ├── bloom.cc │ ├── bloom_test.cc │ ├── cache.cc │ ├── cache_test.cc │ ├── coding.cc │ ├── coding.h │ ├── coding_test.cc │ ├── comparator.cc │ ├── crc32c.cc │ ├── crc32c.h │ ├── crc32c_test.cc │ ├── env.cc │ ├── env_posix.cc │ ├── env_test.cc │ ├── env_win.cc │ ├── filter_policy.cc │ ├── hash.cc │ ├── hash.h │ ├── hash_test.cc │ ├── histogram.cc │ ├── histogram.h │ ├── logging.cc │ ├── logging.h │ ├── mutexlock.h │ ├── options.cc │ ├── posix_logger.h │ ├── random.h │ ├── status.cc │ ├── testharness.cc │ ├── testharness.h │ ├── testutil.cc │ └── testutil.h ├── limitedmap.h ├── main.cpp ├── main.h ├── masternode-payments.cpp ├── masternode-payments.h ├── masternode-sync.cpp ├── masternode-sync.h ├── masternode.cpp ├── masternode.h ├── masternodeconfig.cpp ├── masternodeconfig.h ├── masternodeman.cpp ├── masternodeman.h ├── memusage.h ├── merkleblock.cpp ├── merkleblock.h ├── messagesigner.cpp ├── messagesigner.h ├── miner.cpp ├── miner.h ├── net.cpp ├── net.h ├── net_processing.cpp ├── net_processing.h ├── netaddress.cpp ├── netaddress.h ├── netbase.cpp ├── netbase.h ├── netfulfilledman.cpp ├── netfulfilledman.h ├── noui.cpp ├── noui.h ├── obj-test └── .gitignore ├── obj └── .gitignore ├── policy ├── fees.cpp ├── fees.h ├── policy.cpp ├── policy.h ├── rbf.cpp └── rbf.h ├── pow.cpp ├── pow.h ├── prevector.h ├── primitives ├── block.cpp ├── block.h ├── transaction.cpp └── transaction.h ├── privatesend-client.cpp ├── privatesend-client.h ├── privatesend-server.cpp ├── privatesend-server.h ├── privatesend-util.cpp ├── privatesend-util.h ├── privatesend.cpp ├── privatesend.h ├── protocol.cpp ├── protocol.h ├── pubkey.cpp ├── pubkey.h ├── qt ├── addressbookpage.cpp ├── addressbookpage.h ├── addresstablemodel.cpp ├── addresstablemodel.h ├── applicationspage.cpp ├── applicationspage.h ├── applicationsregistrecordmodel.cpp ├── applicationsregistrecordmodel.h ├── applicationsregistrecordview.cpp ├── applicationsregistrecordview.h ├── applicationsregistry.cpp ├── applicationsregistry.h ├── askpassphrasedialog.cpp ├── askpassphrasedialog.h ├── assetsdistribute.cpp ├── assetsdistribute.h ├── assetsdistributerecordmodel.cpp ├── assetsdistributerecordmodel.h ├── assetsdistributerecordview.cpp ├── assetsdistributerecordview.h ├── assetslogin.cpp ├── assetslogin.h ├── assetspage.cpp ├── assetspage.h ├── bantablemodel.cpp ├── bantablemodel.h ├── bitcoinaddressvalidator.cpp ├── bitcoinaddressvalidator.h ├── bitcoinamountfield.cpp ├── bitcoinamountfield.h ├── bitcoingui.cpp ├── bitcoingui.h ├── bitcoinunits.cpp ├── bitcoinunits.h ├── candypage.cpp ├── candypage.h ├── candytablemodel.cpp ├── candytablemodel.h ├── candyview.cpp ├── candyview.h ├── clientmodel.cpp ├── clientmodel.h ├── coincontroldialog.cpp ├── coincontroldialog.h ├── coincontroltreewidget.cpp ├── coincontroltreewidget.h ├── csvmodelwriter.cpp ├── csvmodelwriter.h ├── customdoublevalidator.h ├── customlineedit.cpp ├── customlineedit.h ├── customslider.cpp ├── customslider.h ├── darksendconfig.cpp ├── darksendconfig.h ├── editaddressdialog.cpp ├── editaddressdialog.h ├── forms │ ├── addressbookpage.ui │ ├── applicationspage.ui │ ├── applicationsregistry.ui │ ├── askpassphrasedialog.ui │ ├── assetsdistribute.ui │ ├── assetslogin.ui │ ├── assetspage.ui │ ├── candypage.ui │ ├── coincontroldialog.ui │ ├── darksendconfig.ui │ ├── debugwindow.ui │ ├── editaddressdialog.ui │ ├── helpmessagedialog.ui │ ├── intro.ui │ ├── masternodelist.ui │ ├── modaloverlay.ui │ ├── openuridialog.ui │ ├── optionsdialog.ui │ ├── overviewentry.ui │ ├── overviewpage.ui │ ├── receivecoinsdialog.ui │ ├── receiverequestdialog.ui │ ├── sendcoinsdialog.ui │ ├── sendcoinsentry.ui │ ├── signverifymessagedialog.ui │ └── transactiondescdialog.ui ├── framelesswidget.cpp ├── framelesswidget.h ├── guiconstants.h ├── guiutil.cpp ├── guiutil.h ├── intro.cpp ├── intro.h ├── locale │ ├── safe_en.ts │ ├── safe_zh_CN.ts │ └── safe_zh_TW.ts ├── lockedmonthfield.cpp ├── lockedmonthfield.h ├── lockedtransactiontablemodel.cpp ├── lockedtransactiontablemodel.h ├── lockedtransactionview.cpp ├── lockedtransactionview.h ├── macdockiconhandler.h ├── macdockiconhandler.mm ├── macnotificationhandler.h ├── macnotificationhandler.mm ├── masternodelist.cpp ├── masternodelist.h ├── modaloverlay.cpp ├── modaloverlay.h ├── networkstyle.cpp ├── networkstyle.h ├── notificator.cpp ├── notificator.h ├── openuridialog.cpp ├── openuridialog.h ├── optionsdialog.cpp ├── optionsdialog.h ├── optionsmodel.cpp ├── optionsmodel.h ├── overviewentry.cpp ├── overviewentry.h ├── overviewpage.cpp ├── overviewpage.h ├── paymentrequest.proto ├── paymentrequestplus.cpp ├── paymentrequestplus.h ├── paymentserver.cpp ├── paymentserver.h ├── peertablemodel.cpp ├── peertablemodel.h ├── platformstyle.cpp ├── platformstyle.h ├── qvalidatedlineedit.cpp ├── qvalidatedlineedit.h ├── qvaluecombobox.cpp ├── qvaluecombobox.h ├── receivecoinsdialog.cpp ├── receivecoinsdialog.h ├── receiverequestdialog.cpp ├── receiverequestdialog.h ├── recentrequeststablemodel.cpp ├── recentrequeststablemodel.h ├── res │ ├── css │ │ ├── crownium.css │ │ ├── drkblue.css │ │ ├── light-hires.css │ │ └── light.css │ ├── font │ │ └── MicrosoftYaHei.ttf │ ├── icons │ │ ├── bitcoin.icns │ │ ├── bitcoin.ico │ │ ├── bitcoin.png │ │ ├── chevron.png │ │ ├── crownium │ │ │ ├── about.png │ │ │ ├── about_qt.png │ │ │ ├── add.png │ │ │ ├── address-book.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 │ │ │ ├── drkblue_address-book.png │ │ │ ├── drkblue_editcopy.png │ │ │ ├── drkblue_editpaste.png │ │ │ ├── drkblue_remove.png │ │ │ ├── edit.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── export.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── filesave.png │ │ │ ├── fontbigger.png │ │ │ ├── fontsmaller.png │ │ │ ├── hd_disabled.png │ │ │ ├── hd_enabled.png │ │ │ ├── history.png │ │ │ ├── key.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── locked_history.png │ │ │ ├── masternodes.png │ │ │ ├── network_disabled.png │ │ │ ├── notsynced.png │ │ │ ├── overview.png │ │ │ ├── quit.png │ │ │ ├── receive.png │ │ │ ├── remove.png │ │ │ ├── send.png │ │ │ ├── synced.png │ │ │ ├── transaction0.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_abandoned.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ ├── tx_output.png │ │ │ └── verify.png │ │ ├── drkblue │ │ │ ├── about.png │ │ │ ├── about_qt.png │ │ │ ├── add.png │ │ │ ├── address-book.png │ │ │ ├── bitcoin.png │ │ │ ├── bitcoin_testnet.ico │ │ │ ├── bitcoin_testnet.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 │ │ │ ├── drkblue_address-book.png │ │ │ ├── drkblue_editcopy.png │ │ │ ├── drkblue_editpaste.png │ │ │ ├── drkblue_remove.png │ │ │ ├── edit.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── export.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── filesave.png │ │ │ ├── fontbigger.png │ │ │ ├── fontsmaller.png │ │ │ ├── hd_disabled.png │ │ │ ├── hd_enabled.png │ │ │ ├── history.png │ │ │ ├── key.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── locked_history.png │ │ │ ├── masternodes.png │ │ │ ├── network_disabled.png │ │ │ ├── notsynced.png │ │ │ ├── overview.png │ │ │ ├── quit.png │ │ │ ├── receive.png │ │ │ ├── remove.png │ │ │ ├── send.png │ │ │ ├── synced.png │ │ │ ├── transaction0.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_abandoned.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ ├── tx_output.png │ │ │ └── verify.png │ │ ├── light │ │ │ ├── about.png │ │ │ ├── about_qt.png │ │ │ ├── add.png │ │ │ ├── address-book.png │ │ │ ├── application.png │ │ │ ├── assets.png │ │ │ ├── available.png │ │ │ ├── browse.png │ │ │ ├── candy.png │ │ │ ├── clock1.png │ │ │ ├── clock2.png │ │ │ ├── clock3.png │ │ │ ├── clock4.png │ │ │ ├── clock5.png │ │ │ ├── close.png │ │ │ ├── configure.png │ │ │ ├── connect0_16.png │ │ │ ├── connect1_16.png │ │ │ ├── connect2_16.png │ │ │ ├── connect3_16.png │ │ │ ├── connect4_16.png │ │ │ ├── debugwindow.png │ │ │ ├── drkblue_address-book.png │ │ │ ├── drkblue_editcopy.png │ │ │ ├── drkblue_editpaste.png │ │ │ ├── drkblue_remove.png │ │ │ ├── edit.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── export.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── filesave.png │ │ │ ├── fontbigger.png │ │ │ ├── fontsmaller.png │ │ │ ├── hd_disabled.png │ │ │ ├── hd_enabled.png │ │ │ ├── history.png │ │ │ ├── immature.png │ │ │ ├── key.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── locked.png │ │ │ ├── locked_history.png │ │ │ ├── masternodes.png │ │ │ ├── max.png │ │ │ ├── min.png │ │ │ ├── network_disabled.png │ │ │ ├── notsynced.png │ │ │ ├── overview.png │ │ │ ├── pending.png │ │ │ ├── quit.png │ │ │ ├── receive.png │ │ │ ├── remove.png │ │ │ ├── restore.png │ │ │ ├── send.png │ │ │ ├── slider.png │ │ │ ├── start.png │ │ │ ├── stop.png │ │ │ ├── synced.png │ │ │ ├── toolbar.png │ │ │ ├── toolbar_testnet.png │ │ │ ├── total.png │ │ │ ├── transaction0.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_abandoned.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ ├── tx_output.png │ │ │ └── verify.png │ │ ├── trad │ │ │ ├── about.png │ │ │ ├── about_qt.png │ │ │ ├── add.png │ │ │ ├── address-book.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 │ │ │ ├── drkblue_address-book.png │ │ │ ├── drkblue_editcopy.png │ │ │ ├── drkblue_editpaste.png │ │ │ ├── drkblue_remove.png │ │ │ ├── edit.png │ │ │ ├── editcopy.png │ │ │ ├── editpaste.png │ │ │ ├── export.png │ │ │ ├── eye.png │ │ │ ├── eye_minus.png │ │ │ ├── eye_plus.png │ │ │ ├── filesave.png │ │ │ ├── fontbigger.png │ │ │ ├── fontsmaller.png │ │ │ ├── hd_disabled.png │ │ │ ├── hd_enabled.png │ │ │ ├── history.png │ │ │ ├── key.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── locked_history.png │ │ │ ├── masternodes.png │ │ │ ├── network_disabled.png │ │ │ ├── notsynced.png │ │ │ ├── overview.png │ │ │ ├── quit.png │ │ │ ├── receive.png │ │ │ ├── remove.png │ │ │ ├── send.png │ │ │ ├── synced.png │ │ │ ├── transaction0.png │ │ │ ├── transaction2.png │ │ │ ├── transaction_abandoned.png │ │ │ ├── transaction_conflicted.png │ │ │ ├── tx_inout.png │ │ │ ├── tx_input.png │ │ │ ├── tx_mined.png │ │ │ ├── tx_output.png │ │ │ └── verify.png │ │ └── warning.png │ ├── images │ │ ├── crownium │ │ │ ├── about.png │ │ │ ├── checked.png │ │ │ ├── drkblue_downArrow.png │ │ │ ├── drkblue_downArrow_small.png │ │ │ ├── drkblue_leftArrow_small.png │ │ │ ├── drkblue_qtreeview_selected.png │ │ │ ├── drkblue_rightArrow_small.png │ │ │ ├── drkblue_upArrow_small.png │ │ │ ├── drkblue_walletFrame_bg.png │ │ │ ├── safe_logo_horizontal.png │ │ │ ├── splash.png │ │ │ ├── splash_testnet.png │ │ │ └── unchecked.png │ │ ├── drkblue │ │ │ ├── about.png │ │ │ ├── checked.png │ │ │ ├── drkblue_downArrow.png │ │ │ ├── drkblue_downArrow_small.png │ │ │ ├── drkblue_leftArrow_small.png │ │ │ ├── drkblue_qtreeview_selected.png │ │ │ ├── drkblue_rightArrow_small.png │ │ │ ├── drkblue_upArrow_small.png │ │ │ ├── drkblue_walletFrame_bg.png │ │ │ ├── safe_logo_horizontal.png │ │ │ ├── splash.png │ │ │ ├── splash_testnet.png │ │ │ └── unchecked.png │ │ ├── light │ │ │ ├── about.png │ │ │ ├── checked.png │ │ │ ├── drkblue_downArrow.png │ │ │ ├── drkblue_downArrow_small.png │ │ │ ├── drkblue_leftArrow_small.png │ │ │ ├── drkblue_list.png │ │ │ ├── drkblue_qtreeview_selected.png │ │ │ ├── drkblue_rightArrow_small.png │ │ │ ├── drkblue_upArrow_small.png │ │ │ ├── drkblue_walletFrame_bg.png │ │ │ ├── safe_logo_horizontal.png │ │ │ ├── splash.png │ │ │ ├── splash_testnet.png │ │ │ └── unchecked.png │ │ └── trad │ │ │ ├── about.png │ │ │ ├── drkblue_downArrow.png │ │ │ ├── drkblue_downArrow_small.png │ │ │ ├── drkblue_leftArrow_small.png │ │ │ ├── drkblue_qtreeview_selected.png │ │ │ ├── drkblue_rightArrow_small.png │ │ │ ├── drkblue_upArrow_small.png │ │ │ ├── drkblue_walletFrame_bg.png │ │ │ ├── safe_logo_horizontal.png │ │ │ ├── splash.png │ │ │ └── splash_testnet.png │ ├── movies │ │ ├── makespinner.sh │ │ ├── spinner-000.png │ │ ├── spinner-001.png │ │ ├── spinner-002.png │ │ ├── spinner-003.png │ │ ├── spinner-004.png │ │ ├── spinner-005.png │ │ ├── spinner-006.png │ │ ├── spinner-007.png │ │ ├── spinner-008.png │ │ ├── spinner-009.png │ │ ├── spinner-010.png │ │ ├── spinner-011.png │ │ ├── spinner-012.png │ │ ├── spinner-013.png │ │ ├── spinner-014.png │ │ ├── spinner-015.png │ │ ├── spinner-016.png │ │ ├── spinner-017.png │ │ ├── spinner-018.png │ │ ├── spinner-019.png │ │ ├── spinner-020.png │ │ ├── spinner-021.png │ │ ├── spinner-022.png │ │ ├── spinner-023.png │ │ ├── spinner-024.png │ │ ├── spinner-025.png │ │ ├── spinner-026.png │ │ ├── spinner-027.png │ │ ├── spinner-028.png │ │ ├── spinner-029.png │ │ ├── spinner-030.png │ │ ├── spinner-031.png │ │ ├── spinner-032.png │ │ ├── spinner-033.png │ │ ├── spinner-034.png │ │ └── spinner-035.png │ ├── safe-qt-res.rc │ └── src │ │ ├── bitcoin.svg │ │ ├── clock_0.svg │ │ ├── clock_1.svg │ │ ├── clock_2.svg │ │ ├── clock_3.svg │ │ ├── clock_4.svg │ │ ├── connect-0.svg │ │ ├── connect-1.svg │ │ ├── connect-2.svg │ │ ├── connect-3.svg │ │ ├── connect-4.svg │ │ ├── hd_disabled.svg │ │ ├── hd_enabled.svg │ │ ├── mine.svg │ │ ├── network_disabled.svg │ │ ├── qt.svg │ │ ├── spinner.png │ │ ├── transaction0.svg │ │ ├── tx_in.svg │ │ ├── tx_inout.svg │ │ └── verify.svg ├── rpcconsole.cpp ├── rpcconsole.h ├── safe.cpp ├── safe.qrc ├── safe_locale.qrc ├── safestrings.cpp ├── sendcoinsdialog.cpp ├── sendcoinsdialog.h ├── sendcoinsentry.cpp ├── sendcoinsentry.h ├── signverifymessagedialog.cpp ├── signverifymessagedialog.h ├── splashscreen.cpp ├── splashscreen.h ├── test │ ├── Makefile │ ├── compattests.cpp │ ├── compattests.h │ ├── paymentrequestdata.h │ ├── paymentservertests.cpp │ ├── paymentservertests.h │ ├── test_main.cpp │ ├── trafficgraphdatatests.cpp │ ├── trafficgraphdatatests.h │ ├── uritests.cpp │ └── uritests.h ├── titlebar.cpp ├── titlebar.h ├── trafficgraphdata.cpp ├── trafficgraphdata.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 ├── updateTransaction.cpp ├── updateTransaction.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 ├── rest.cpp ├── reverselock.h ├── rpc ├── blockchain.cpp ├── client.cpp ├── client.h ├── governance.cpp ├── masternode.cpp ├── mining.cpp ├── misc.cpp ├── net.cpp ├── protocol.cpp ├── protocol.h ├── rawtransaction.cpp ├── server.cpp └── server.h ├── safe-cli-res.rc ├── safe-cli.cpp ├── safe-tx-res.rc ├── safe-tx.cpp ├── safed-res.rc ├── safed.cpp ├── scheduler.cpp ├── scheduler.h ├── script ├── interpreter.cpp ├── interpreter.h ├── safeconsensus.cpp ├── safeconsensus.h ├── script.cpp ├── script.h ├── script_error.cpp ├── script_error.h ├── sigcache.cpp ├── sigcache.h ├── sign.cpp ├── sign.h ├── standard.cpp └── standard.h ├── secp256k1 ├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── README.md ├── TODO ├── autogen.sh ├── build-aux │ └── m4 │ │ ├── ax_prog_cc_for_build.m4 │ │ └── bitcoin_secp.m4 ├── configure.ac ├── contrib │ ├── lax_der_parsing.c │ ├── lax_der_parsing.h │ ├── lax_der_privatekey_parsing.c │ └── lax_der_privatekey_parsing.h ├── include │ ├── secp256k1.h │ ├── secp256k1_ecdh.h │ ├── secp256k1_recovery.h │ └── secp256k1_schnorr.h ├── libsecp256k1.pc.in ├── obj │ └── .gitignore └── src │ ├── basic-config.h │ ├── bench.h │ ├── bench_ecdh.c │ ├── bench_internal.c │ ├── bench_recover.c │ ├── bench_schnorr_verify.c │ ├── bench_sign.c │ ├── bench_verify.c │ ├── ecdsa.h │ ├── ecdsa_impl.h │ ├── eckey.h │ ├── eckey_impl.h │ ├── ecmult.h │ ├── ecmult_const.h │ ├── ecmult_const_impl.h │ ├── ecmult_gen.h │ ├── ecmult_gen_impl.h │ ├── ecmult_impl.h │ ├── field.h │ ├── field_10x26.h │ ├── field_10x26_impl.h │ ├── field_5x52.h │ ├── field_5x52_asm_impl.h │ ├── field_5x52_impl.h │ ├── field_5x52_int128_impl.h │ ├── field_impl.h │ ├── gen_context.c │ ├── group.h │ ├── group_impl.h │ ├── hash.h │ ├── hash_impl.h │ ├── java │ ├── org │ │ └── bitcoin │ │ │ └── NativeSecp256k1.java │ ├── org_bitcoin_NativeSecp256k1.c │ └── org_bitcoin_NativeSecp256k1.h │ ├── modules │ ├── ecdh │ │ ├── Makefile.am.include │ │ ├── main_impl.h │ │ └── tests_impl.h │ ├── recovery │ │ ├── Makefile.am.include │ │ ├── main_impl.h │ │ └── tests_impl.h │ └── schnorr │ │ ├── Makefile.am.include │ │ ├── main_impl.h │ │ ├── schnorr.h │ │ ├── schnorr_impl.h │ │ └── tests_impl.h │ ├── num.h │ ├── num_gmp.h │ ├── num_gmp_impl.h │ ├── num_impl.h │ ├── scalar.h │ ├── scalar_4x64.h │ ├── scalar_4x64_impl.h │ ├── scalar_8x32.h │ ├── scalar_8x32_impl.h │ ├── scalar_impl.h │ ├── secp256k1.c │ ├── testrand.h │ ├── testrand_impl.h │ ├── tests.c │ └── util.h ├── sendalert.cpp ├── serialize.h ├── spentindex.h ├── spork.cpp ├── spork.h ├── streams.h ├── support ├── allocators │ ├── secure.h │ └── zeroafterfree.h ├── cleanse.cpp ├── cleanse.h ├── pagelocker.cpp └── pagelocker.h ├── sync.cpp ├── sync.h ├── test ├── DoS_tests.cpp ├── Makefile ├── README.md ├── accounting_tests.cpp ├── addrman_tests.cpp ├── alert_tests.cpp ├── allocator_tests.cpp ├── arith_uint256_tests.cpp ├── base32_tests.cpp ├── base58_tests.cpp ├── base64_tests.cpp ├── bctest.py ├── bip32_tests.cpp ├── bip39_tests.cpp ├── bitcoin-util-test.py ├── bloom_tests.cpp ├── bswap_tests.cpp ├── buildenv.py.in ├── cachemap_tests.cpp ├── cachemultimap_tests.cpp ├── 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 │ ├── bip39_vectors.json │ ├── bitcoin-util-test.json │ ├── blanktx.hex │ ├── proposals-invalid.json │ ├── proposals-valid.json │ ├── script_tests.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 │ ├── txcreatedata1.hex │ ├── txcreatedata2.hex │ └── txcreatesign.hex ├── dbwrapper_tests.cpp ├── getarg_tests.cpp ├── governance_validators_tests.cpp ├── hash_tests.cpp ├── key_tests.cpp ├── limitedmap_tests.cpp ├── main_tests.cpp ├── mempool_tests.cpp ├── merkle_tests.cpp ├── miner_tests.cpp ├── multisig_tests.cpp ├── net_tests.cpp ├── netbase_tests.cpp ├── pmt_tests.cpp ├── policyestimator_tests.cpp ├── pow_tests.cpp ├── prevector_tests.cpp ├── ratecheck_tests.cpp ├── reverselock_tests.cpp ├── rpc_tests.cpp ├── rpc_wallet_tests.cpp ├── sanity_tests.cpp ├── scheduler_tests.cpp ├── script_P2PKH_tests.cpp ├── script_P2SH_tests.cpp ├── script_tests.cpp ├── scriptnum10.h ├── scriptnum_tests.cpp ├── serialize_tests.cpp ├── sighash_tests.cpp ├── sigopcount_tests.cpp ├── skiplist_tests.cpp ├── streams_tests.cpp ├── test_safe.cpp ├── test_safe.h ├── timedata_tests.cpp ├── transaction_tests.cpp ├── txvalidationcache_tests.cpp ├── uint256_tests.cpp ├── univalue_tests.cpp ├── util_tests.cpp └── versionbits_tests.cpp ├── threadinterrupt.cpp ├── threadinterrupt.h ├── threadsafety.h ├── timedata.cpp ├── timedata.h ├── tinyformat.h ├── torcontrol.cpp ├── torcontrol.h ├── txdb.cpp ├── txdb.h ├── txmempool.cpp ├── txmempool.h ├── ui_interface.h ├── uint256.cpp ├── uint256.h ├── undo.h ├── univalue ├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── README ├── TODO ├── autogen.sh ├── build-aux │ └── m4 │ │ └── .gitignore ├── configure.ac ├── gen │ └── gen.cpp ├── include │ └── univalue.h ├── lib │ ├── .gitignore │ ├── univalue.cpp │ ├── univalue_escapes.h │ ├── univalue_read.cpp │ ├── univalue_utffilter.h │ └── univalue_write.cpp ├── pc │ ├── libunivalue-uninstalled.pc.in │ └── libunivalue.pc.in └── test │ ├── .gitignore │ ├── fail1.json │ ├── fail10.json │ ├── fail11.json │ ├── fail12.json │ ├── fail13.json │ ├── fail14.json │ ├── fail15.json │ ├── fail16.json │ ├── fail17.json │ ├── fail18.json │ ├── fail19.json │ ├── fail2.json │ ├── fail20.json │ ├── fail21.json │ ├── fail22.json │ ├── fail23.json │ ├── fail24.json │ ├── fail25.json │ ├── fail26.json │ ├── fail27.json │ ├── fail28.json │ ├── fail29.json │ ├── fail3.json │ ├── fail30.json │ ├── fail31.json │ ├── fail32.json │ ├── fail33.json │ ├── fail34.json │ ├── fail35.json │ ├── fail36.json │ ├── fail37.json │ ├── fail38.json │ ├── fail39.json │ ├── fail4.json │ ├── fail40.json │ ├── fail41.json │ ├── fail5.json │ ├── fail6.json │ ├── fail7.json │ ├── fail8.json │ ├── fail9.json │ ├── pass1.json │ ├── pass2.json │ ├── pass3.json │ ├── round1.json │ ├── round2.json │ └── unitester.cpp ├── util.cpp ├── util.h ├── utilmoneystr.cpp ├── utilmoneystr.h ├── utilstrencodings.cpp ├── utilstrencodings.h ├── utiltime.cpp ├── utiltime.h ├── validation.cpp ├── validation.h ├── validationinterface.cpp ├── validationinterface.h ├── version.h ├── versionbits.cpp ├── versionbits.h ├── wallet ├── crypter.cpp ├── crypter.h ├── db.cpp ├── db.h ├── rpcdump.cpp ├── rpcwallet.cpp ├── test │ └── wallet_tests.cpp ├── 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 /.gitattributes: -------------------------------------------------------------------------------- 1 | src/clientversion.cpp export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/.tx/config -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/README.md -------------------------------------------------------------------------------- /contrib/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/changelog -------------------------------------------------------------------------------- /contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/gbp.conf -------------------------------------------------------------------------------- /contrib/debian/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/patches/README -------------------------------------------------------------------------------- /contrib/debian/patches/series: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/rules -------------------------------------------------------------------------------- /contrib/debian/safe-qt.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/safe-qt.desktop -------------------------------------------------------------------------------- /contrib/debian/safe-qt.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/safe-qt.install -------------------------------------------------------------------------------- /contrib/debian/safe-tx.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/safe-tx.install -------------------------------------------------------------------------------- /contrib/debian/safed.examples: -------------------------------------------------------------------------------- 1 | debian/examples/safe.conf 2 | -------------------------------------------------------------------------------- /contrib/debian/safed.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/safed.install -------------------------------------------------------------------------------- /contrib/debian/safed.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/safed.manpages -------------------------------------------------------------------------------- /contrib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /contrib/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/debian/watch -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/safed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/init/safed.conf -------------------------------------------------------------------------------- /contrib/init/safed.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/init/safed.init -------------------------------------------------------------------------------- /contrib/init/safed.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/init/safed.openrc -------------------------------------------------------------------------------- /contrib/init/safed.openrcconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/init/safed.openrcconf -------------------------------------------------------------------------------- /contrib/init/safed.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/init/safed.service -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/macdeploy/DS_Store -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/fancy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/macdeploy/fancy.plist -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/qt_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/qt_translations.py -------------------------------------------------------------------------------- /contrib/safe-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/safe-qt.pro -------------------------------------------------------------------------------- /contrib/safed.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/safed.bash-completion -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/seeds/nodes_main.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/seeds/nodes_test.txt: -------------------------------------------------------------------------------- 1 | # List of fixed seed nodes for testnet 2 | -------------------------------------------------------------------------------- /contrib/spendfrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/spendfrom/README.md -------------------------------------------------------------------------------- /contrib/spendfrom/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/spendfrom/setup.py -------------------------------------------------------------------------------- /contrib/spendfrom/spendfrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/spendfrom/spendfrom.py -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/tidy_datadir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/tidy_datadir.sh -------------------------------------------------------------------------------- /contrib/verify-commits/gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/verify-commits/gpg.sh -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | 165e323d851cc87213c7673c6f278e87a6f2e752 2 | -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/builders/default.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/config.site.in -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/bdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/bdb.mk -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/dbus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/dbus.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/fontconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/fontconfig.mk -------------------------------------------------------------------------------- /depends/packages/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/freetype.mk -------------------------------------------------------------------------------- /depends/packages/libICE.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/libICE.mk -------------------------------------------------------------------------------- /depends/packages/libSM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/libSM.mk -------------------------------------------------------------------------------- /depends/packages/libX11.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/libX11.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libXext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/libXext.mk -------------------------------------------------------------------------------- /depends/packages/libevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/libevent.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/miniupnpc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/miniupnpc.mk -------------------------------------------------------------------------------- /depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/openssl.mk -------------------------------------------------------------------------------- /depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/packages.mk -------------------------------------------------------------------------------- /depends/packages/protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/protobuf.mk -------------------------------------------------------------------------------- /depends/packages/qrencode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/qrencode.mk -------------------------------------------------------------------------------- /depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/qt.mk -------------------------------------------------------------------------------- /depends/packages/qt46.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/qt46.mk -------------------------------------------------------------------------------- /depends/packages/xcb_proto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/xcb_proto.mk -------------------------------------------------------------------------------- /depends/packages/xextproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/xextproto.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/xtrans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/xtrans.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_osx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/README_osx.txt -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/bips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/bips.md -------------------------------------------------------------------------------- /doc/bitcoin_logo_doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/bitcoin_logo_doxygen.png -------------------------------------------------------------------------------- /doc/build-openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/build-openbsd.md -------------------------------------------------------------------------------- /doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/build-osx.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/build-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/build-windows.md -------------------------------------------------------------------------------- /doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/developer-notes.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/gitian-building.md -------------------------------------------------------------------------------- /doc/guide-startmany.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/guide-startmany.md -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/instantsend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/instantsend.md -------------------------------------------------------------------------------- /doc/keepass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/keepass.md -------------------------------------------------------------------------------- /doc/masternode-budget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/masternode-budget.md -------------------------------------------------------------------------------- /doc/masternode_conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/masternode_conf.md -------------------------------------------------------------------------------- /doc/multiwallet-qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/multiwallet-qt.md -------------------------------------------------------------------------------- /doc/reduce-traffic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/reduce-traffic.md -------------------------------------------------------------------------------- /doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/release-notes.md -------------------------------------------------------------------------------- /doc/release-notes/bitcoin/release-notes-0.3.16.md: -------------------------------------------------------------------------------- 1 | Never released. 2 | -------------------------------------------------------------------------------- /doc/release-notes/bitcoin/release-notes-0.6.1.md: -------------------------------------------------------------------------------- 1 | Never released 2 | 3 | -------------------------------------------------------------------------------- /doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/safe-chain-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/safe-chain-name.md -------------------------------------------------------------------------------- /doc/shared-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/shared-libraries.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/translation_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/translation_process.md -------------------------------------------------------------------------------- /doc/travis-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/travis-ci.txt -------------------------------------------------------------------------------- /doc/unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/unit-tests.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /libsafeconsensus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/libsafeconsensus.pc.in -------------------------------------------------------------------------------- /qa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/README.md -------------------------------------------------------------------------------- /qa/pull-tester/rpc-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/pull-tester/rpc-tests.py -------------------------------------------------------------------------------- /qa/rpc-tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | cache 3 | -------------------------------------------------------------------------------- /qa/rpc-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/README.md -------------------------------------------------------------------------------- /qa/rpc-tests/addressindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/addressindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/bip65-cltv-p2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/bip65-cltv-p2p.py -------------------------------------------------------------------------------- /qa/rpc-tests/bip65-cltv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/bip65-cltv.py -------------------------------------------------------------------------------- /qa/rpc-tests/bip68-sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/bip68-sequence.py -------------------------------------------------------------------------------- /qa/rpc-tests/bip9-softforks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/bip9-softforks.py -------------------------------------------------------------------------------- /qa/rpc-tests/bipdersig-p2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/bipdersig-p2p.py -------------------------------------------------------------------------------- /qa/rpc-tests/bipdersig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/bipdersig.py -------------------------------------------------------------------------------- /qa/rpc-tests/blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/blockchain.py -------------------------------------------------------------------------------- /qa/rpc-tests/decodescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/decodescript.py -------------------------------------------------------------------------------- /qa/rpc-tests/disablewallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/disablewallet.py -------------------------------------------------------------------------------- /qa/rpc-tests/forknotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/forknotify.py -------------------------------------------------------------------------------- /qa/rpc-tests/getchaintips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/getchaintips.py -------------------------------------------------------------------------------- /qa/rpc-tests/httpbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/httpbasics.py -------------------------------------------------------------------------------- /qa/rpc-tests/keypool-hd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/keypool-hd.py -------------------------------------------------------------------------------- /qa/rpc-tests/keypool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/keypool.py -------------------------------------------------------------------------------- /qa/rpc-tests/mempool_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/mempool_limit.py -------------------------------------------------------------------------------- /qa/rpc-tests/mempool_reorg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/mempool_reorg.py -------------------------------------------------------------------------------- /qa/rpc-tests/merkle_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/merkle_blocks.py -------------------------------------------------------------------------------- /qa/rpc-tests/multi_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/multi_rpc.py -------------------------------------------------------------------------------- /qa/rpc-tests/nodehandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/nodehandling.py -------------------------------------------------------------------------------- /qa/rpc-tests/proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/proxy_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/pruning.py -------------------------------------------------------------------------------- /qa/rpc-tests/receivedby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/receivedby.py -------------------------------------------------------------------------------- /qa/rpc-tests/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/reindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/replace-by-fee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/replace-by-fee.py -------------------------------------------------------------------------------- /qa/rpc-tests/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/rest.py -------------------------------------------------------------------------------- /qa/rpc-tests/rpcbind_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/rpcbind_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/sendheaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/sendheaders.py -------------------------------------------------------------------------------- /qa/rpc-tests/smartfees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/smartfees.py -------------------------------------------------------------------------------- /qa/rpc-tests/spentindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/spentindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/test_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qa/rpc-tests/timestampindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/timestampindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/txindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/txindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/txn_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/txn_clone.py -------------------------------------------------------------------------------- /qa/rpc-tests/wallet-hd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/wallet-hd.py -------------------------------------------------------------------------------- /qa/rpc-tests/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/wallet.py -------------------------------------------------------------------------------- /qa/rpc-tests/walletbackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/walletbackup.py -------------------------------------------------------------------------------- /qa/rpc-tests/zapwallettxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/zapwallettxes.py -------------------------------------------------------------------------------- /qa/rpc-tests/zmq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/qa/rpc-tests/zmq_test.py -------------------------------------------------------------------------------- /safe-docs/img/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/safe-docs/img/pic1.png -------------------------------------------------------------------------------- /safe-docs/img/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/safe-docs/img/pic2.png -------------------------------------------------------------------------------- /safe-docs/safe-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/safe-docs/safe-distribution.md -------------------------------------------------------------------------------- /share/certs/PrivateKeyNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/certs/PrivateKeyNotes.md -------------------------------------------------------------------------------- /share/genbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/genbuild.sh -------------------------------------------------------------------------------- /share/pixmaps/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/bitcoin.ico -------------------------------------------------------------------------------- /share/pixmaps/nsis-header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/nsis-header.bmp -------------------------------------------------------------------------------- /share/pixmaps/nsis-wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/nsis-wizard.bmp -------------------------------------------------------------------------------- /share/pixmaps/safe128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe128.png -------------------------------------------------------------------------------- /share/pixmaps/safe128.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe128.xpm -------------------------------------------------------------------------------- /share/pixmaps/safe16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe16.png -------------------------------------------------------------------------------- /share/pixmaps/safe16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe16.xpm -------------------------------------------------------------------------------- /share/pixmaps/safe256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe256.png -------------------------------------------------------------------------------- /share/pixmaps/safe256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe256.xpm -------------------------------------------------------------------------------- /share/pixmaps/safe32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe32.png -------------------------------------------------------------------------------- /share/pixmaps/safe32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe32.xpm -------------------------------------------------------------------------------- /share/pixmaps/safe64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe64.png -------------------------------------------------------------------------------- /share/pixmaps/safe64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/pixmaps/safe64.xpm -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/qt/extract_strings_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/qt/extract_strings_qt.py -------------------------------------------------------------------------------- /share/qt/protobuf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/qt/protobuf.pri -------------------------------------------------------------------------------- /share/rpcuser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/rpcuser/README.md -------------------------------------------------------------------------------- /share/rpcuser/rpcuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/rpcuser/rpcuser.py -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.bench.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/Makefile.bench.include -------------------------------------------------------------------------------- /src/Makefile.leveldb.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/Makefile.leveldb.include -------------------------------------------------------------------------------- /src/Makefile.qt.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/Makefile.qt.include -------------------------------------------------------------------------------- /src/Makefile.qttest.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/Makefile.qttest.include -------------------------------------------------------------------------------- /src/Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/Makefile.test.include -------------------------------------------------------------------------------- /src/activemasternode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/activemasternode.cpp -------------------------------------------------------------------------------- /src/activemasternode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/activemasternode.h -------------------------------------------------------------------------------- /src/addrdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/addrdb.cpp -------------------------------------------------------------------------------- /src/addrdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/addrdb.h -------------------------------------------------------------------------------- /src/addressindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/addressindex.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/alert.cpp -------------------------------------------------------------------------------- /src/alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/alert.h -------------------------------------------------------------------------------- /src/amount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/amount.cpp -------------------------------------------------------------------------------- /src/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/amount.h -------------------------------------------------------------------------------- /src/app/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/app/app.cpp -------------------------------------------------------------------------------- /src/app/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/app/app.h -------------------------------------------------------------------------------- /src/app/app.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/app/app.proto -------------------------------------------------------------------------------- /src/app/rpcapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/app/rpcapp.cpp -------------------------------------------------------------------------------- /src/app/rpcasset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/app/rpcasset.cpp -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bench/.gitignore: -------------------------------------------------------------------------------- 1 | bench_dash 2 | -------------------------------------------------------------------------------- /src/bench/Examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/bench/Examples.cpp -------------------------------------------------------------------------------- /src/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/bench/bench.cpp -------------------------------------------------------------------------------- /src/bench/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/bench/bench.h -------------------------------------------------------------------------------- /src/bench/bench_safe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/bench/bench_safe.cpp -------------------------------------------------------------------------------- /src/bip39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/bip39.cpp -------------------------------------------------------------------------------- /src/bip39.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/bip39.h -------------------------------------------------------------------------------- /src/bip39_english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/bip39_english.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/cachemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/cachemap.h -------------------------------------------------------------------------------- /src/cachemultimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/cachemultimap.h -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/checkpoints.cpp -------------------------------------------------------------------------------- /src/checkpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/checkpoints.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/coincontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/coincontrol.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compat/byteswap.h -------------------------------------------------------------------------------- /src/compat/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compat/endian.h -------------------------------------------------------------------------------- /src/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibc_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compat/glibc_sanity.cpp -------------------------------------------------------------------------------- /src/compat/glibcxx_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compat/glibcxx_sanity.cpp -------------------------------------------------------------------------------- /src/compat/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compat/sanity.h -------------------------------------------------------------------------------- /src/compat/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compat/strnlen.cpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/safe-chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/config/safe-chain.h -------------------------------------------------------------------------------- /src/consensus/consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/consensus/consensus.h -------------------------------------------------------------------------------- /src/consensus/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/consensus/merkle.cpp -------------------------------------------------------------------------------- /src/consensus/merkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/consensus/merkle.h -------------------------------------------------------------------------------- /src/consensus/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/consensus/params.h -------------------------------------------------------------------------------- /src/consensus/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/consensus/validation.h -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/core_memusage.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crypto/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/aes_helper.c -------------------------------------------------------------------------------- /src/crypto/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/blake.c -------------------------------------------------------------------------------- /src/crypto/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/bmw.c -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/cubehash.c -------------------------------------------------------------------------------- /src/crypto/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/echo.c -------------------------------------------------------------------------------- /src/crypto/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/groestl.c -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/jh.c -------------------------------------------------------------------------------- /src/crypto/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/keccak.c -------------------------------------------------------------------------------- /src/crypto/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/luffa.c -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/crypto/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/shavite.c -------------------------------------------------------------------------------- /src/crypto/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/simd.c -------------------------------------------------------------------------------- /src/crypto/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/skein.c -------------------------------------------------------------------------------- /src/crypto/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_blake.h -------------------------------------------------------------------------------- /src/crypto/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_bmw.h -------------------------------------------------------------------------------- /src/crypto/sph_cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_cubehash.h -------------------------------------------------------------------------------- /src/crypto/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_echo.h -------------------------------------------------------------------------------- /src/crypto/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_groestl.h -------------------------------------------------------------------------------- /src/crypto/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_jh.h -------------------------------------------------------------------------------- /src/crypto/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_keccak.h -------------------------------------------------------------------------------- /src/crypto/sph_luffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_luffa.h -------------------------------------------------------------------------------- /src/crypto/sph_shavite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_shavite.h -------------------------------------------------------------------------------- /src/crypto/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_simd.h -------------------------------------------------------------------------------- /src/crypto/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_skein.h -------------------------------------------------------------------------------- /src/crypto/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/crypto/sph_types.h -------------------------------------------------------------------------------- /src/darksend-relay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/darksend-relay.cpp -------------------------------------------------------------------------------- /src/darksend-relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/darksend-relay.h -------------------------------------------------------------------------------- /src/dbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/dbwrapper.cpp -------------------------------------------------------------------------------- /src/dbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/dbwrapper.h -------------------------------------------------------------------------------- /src/drafted/governance-keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/drafted/governance-keys.h -------------------------------------------------------------------------------- /src/drafted/governance-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/drafted/governance-types.h -------------------------------------------------------------------------------- /src/drafted/governance.new.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dsnotificationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/dsnotificationinterface.h -------------------------------------------------------------------------------- /src/flat-database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/flat-database.h -------------------------------------------------------------------------------- /src/governance-classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-classes.cpp -------------------------------------------------------------------------------- /src/governance-classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-classes.h -------------------------------------------------------------------------------- /src/governance-exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-exceptions.h -------------------------------------------------------------------------------- /src/governance-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-misc.h -------------------------------------------------------------------------------- /src/governance-object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-object.cpp -------------------------------------------------------------------------------- /src/governance-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-object.h -------------------------------------------------------------------------------- /src/governance-validators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-validators.cpp -------------------------------------------------------------------------------- /src/governance-validators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-validators.h -------------------------------------------------------------------------------- /src/governance-vote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-vote.cpp -------------------------------------------------------------------------------- /src/governance-vote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-vote.h -------------------------------------------------------------------------------- /src/governance-votedb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-votedb.cpp -------------------------------------------------------------------------------- /src/governance-votedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance-votedb.h -------------------------------------------------------------------------------- /src/governance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance.cpp -------------------------------------------------------------------------------- /src/governance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/governance.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/hdchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/hdchain.cpp -------------------------------------------------------------------------------- /src/hdchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/hdchain.h -------------------------------------------------------------------------------- /src/httprpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/httprpc.cpp -------------------------------------------------------------------------------- /src/httprpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/httprpc.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/init.h -------------------------------------------------------------------------------- /src/instantx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/instantx.cpp -------------------------------------------------------------------------------- /src/instantx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/instantx.h -------------------------------------------------------------------------------- /src/keepass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/keepass.cpp -------------------------------------------------------------------------------- /src/keepass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/keepass.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/key.h -------------------------------------------------------------------------------- /src/keystore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/keystore.cpp -------------------------------------------------------------------------------- /src/keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/keystore.h -------------------------------------------------------------------------------- /src/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/.gitignore -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/Makefile -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/README -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/TODO -------------------------------------------------------------------------------- /src/leveldb/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/WINDOWS.md -------------------------------------------------------------------------------- /src/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/db_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/db_bench.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/leveldb_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/leveldb_main.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/log_format.h -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/log_reader.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/log_writer.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/table_cache.cc -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/table_cache.h -------------------------------------------------------------------------------- /src/leveldb/db/version_edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/version_edit.cc -------------------------------------------------------------------------------- /src/leveldb/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/version_edit.h -------------------------------------------------------------------------------- /src/leveldb/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/version_set.cc -------------------------------------------------------------------------------- /src/leveldb/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/version_set.h -------------------------------------------------------------------------------- /src/leveldb/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/db/write_batch.cc -------------------------------------------------------------------------------- /src/leveldb/doc/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/doc/benchmark.html -------------------------------------------------------------------------------- /src/leveldb/doc/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/doc/doc.css -------------------------------------------------------------------------------- /src/leveldb/doc/impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/doc/impl.html -------------------------------------------------------------------------------- /src/leveldb/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/doc/index.html -------------------------------------------------------------------------------- /src/leveldb/doc/log_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/doc/log_format.txt -------------------------------------------------------------------------------- /src/leveldb/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/port/README -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/port/port_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/port/port_posix.cc -------------------------------------------------------------------------------- /src/leveldb/port/port_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/port/port_posix.h -------------------------------------------------------------------------------- /src/leveldb/port/port_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/port/port_win.cc -------------------------------------------------------------------------------- /src/leveldb/port/port_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/port/port_win.h -------------------------------------------------------------------------------- /src/leveldb/port/win/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/port/win/stdint.h -------------------------------------------------------------------------------- /src/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/table/block.cc -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/table/format.cc -------------------------------------------------------------------------------- /src/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/table/format.h -------------------------------------------------------------------------------- /src/leveldb/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/table/iterator.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/table/merger.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/table/merger.h -------------------------------------------------------------------------------- /src/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/table/table.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/arena_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/arena_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/bloom_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/bloom_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/cache_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/coding.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/comparator.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/env_posix.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/env_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/env_win.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/hash_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/histogram.cc -------------------------------------------------------------------------------- /src/leveldb/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/histogram.h -------------------------------------------------------------------------------- /src/leveldb/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/logging.cc -------------------------------------------------------------------------------- /src/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/logging.h -------------------------------------------------------------------------------- /src/leveldb/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/mutexlock.h -------------------------------------------------------------------------------- /src/leveldb/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/options.cc -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/status.cc -------------------------------------------------------------------------------- /src/leveldb/util/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/testharness.h -------------------------------------------------------------------------------- /src/leveldb/util/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/testutil.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/leveldb/util/testutil.h -------------------------------------------------------------------------------- /src/limitedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/limitedmap.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/main.h -------------------------------------------------------------------------------- /src/masternode-payments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternode-payments.cpp -------------------------------------------------------------------------------- /src/masternode-payments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternode-payments.h -------------------------------------------------------------------------------- /src/masternode-sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternode-sync.cpp -------------------------------------------------------------------------------- /src/masternode-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternode-sync.h -------------------------------------------------------------------------------- /src/masternode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternode.cpp -------------------------------------------------------------------------------- /src/masternode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternode.h -------------------------------------------------------------------------------- /src/masternodeconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternodeconfig.cpp -------------------------------------------------------------------------------- /src/masternodeconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternodeconfig.h -------------------------------------------------------------------------------- /src/masternodeman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternodeman.cpp -------------------------------------------------------------------------------- /src/masternodeman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/masternodeman.h -------------------------------------------------------------------------------- /src/memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/memusage.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/messagesigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/messagesigner.cpp -------------------------------------------------------------------------------- /src/messagesigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/messagesigner.h -------------------------------------------------------------------------------- /src/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/miner.cpp -------------------------------------------------------------------------------- /src/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/miner.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/net.h -------------------------------------------------------------------------------- /src/net_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/net_processing.cpp -------------------------------------------------------------------------------- /src/net_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/net_processing.h -------------------------------------------------------------------------------- /src/netaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/netaddress.cpp -------------------------------------------------------------------------------- /src/netaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/netaddress.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/netfulfilledman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/netfulfilledman.cpp -------------------------------------------------------------------------------- /src/netfulfilledman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/netfulfilledman.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/obj-test/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/policy/fees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/policy/fees.cpp -------------------------------------------------------------------------------- /src/policy/fees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/policy/fees.h -------------------------------------------------------------------------------- /src/policy/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/policy/policy.cpp -------------------------------------------------------------------------------- /src/policy/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/policy/policy.h -------------------------------------------------------------------------------- /src/policy/rbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/policy/rbf.cpp -------------------------------------------------------------------------------- /src/policy/rbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/policy/rbf.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/prevector.h -------------------------------------------------------------------------------- /src/primitives/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/primitives/block.cpp -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/primitives/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/primitives/transaction.cpp -------------------------------------------------------------------------------- /src/primitives/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/primitives/transaction.h -------------------------------------------------------------------------------- /src/privatesend-client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/privatesend-client.cpp -------------------------------------------------------------------------------- /src/privatesend-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/privatesend-client.h -------------------------------------------------------------------------------- /src/privatesend-server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/privatesend-server.cpp -------------------------------------------------------------------------------- /src/privatesend-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/privatesend-server.h -------------------------------------------------------------------------------- /src/privatesend-util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/privatesend-util.cpp -------------------------------------------------------------------------------- /src/privatesend-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/privatesend-util.h -------------------------------------------------------------------------------- /src/privatesend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/privatesend.cpp -------------------------------------------------------------------------------- /src/privatesend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/privatesend.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/addressbookpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/addressbookpage.cpp -------------------------------------------------------------------------------- /src/qt/addressbookpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/addressbookpage.h -------------------------------------------------------------------------------- /src/qt/addresstablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/addresstablemodel.cpp -------------------------------------------------------------------------------- /src/qt/addresstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/addresstablemodel.h -------------------------------------------------------------------------------- /src/qt/applicationspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/applicationspage.cpp -------------------------------------------------------------------------------- /src/qt/applicationspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/applicationspage.h -------------------------------------------------------------------------------- /src/qt/applicationsregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/applicationsregistry.h -------------------------------------------------------------------------------- /src/qt/askpassphrasedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/askpassphrasedialog.cpp -------------------------------------------------------------------------------- /src/qt/askpassphrasedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/askpassphrasedialog.h -------------------------------------------------------------------------------- /src/qt/assetsdistribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/assetsdistribute.cpp -------------------------------------------------------------------------------- /src/qt/assetsdistribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/assetsdistribute.h -------------------------------------------------------------------------------- /src/qt/assetslogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/assetslogin.cpp -------------------------------------------------------------------------------- /src/qt/assetslogin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/assetslogin.h -------------------------------------------------------------------------------- /src/qt/assetspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/assetspage.cpp -------------------------------------------------------------------------------- /src/qt/assetspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/assetspage.h -------------------------------------------------------------------------------- /src/qt/bantablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/bantablemodel.cpp -------------------------------------------------------------------------------- /src/qt/bantablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/bantablemodel.h -------------------------------------------------------------------------------- /src/qt/bitcoinamountfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/bitcoinamountfield.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinamountfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/bitcoinamountfield.h -------------------------------------------------------------------------------- /src/qt/bitcoingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/bitcoingui.cpp -------------------------------------------------------------------------------- /src/qt/bitcoingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/bitcoingui.h -------------------------------------------------------------------------------- /src/qt/bitcoinunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/bitcoinunits.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/bitcoinunits.h -------------------------------------------------------------------------------- /src/qt/candypage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/candypage.cpp -------------------------------------------------------------------------------- /src/qt/candypage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/candypage.h -------------------------------------------------------------------------------- /src/qt/candytablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/candytablemodel.cpp -------------------------------------------------------------------------------- /src/qt/candytablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/candytablemodel.h -------------------------------------------------------------------------------- /src/qt/candyview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/candyview.cpp -------------------------------------------------------------------------------- /src/qt/candyview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/candyview.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/coincontroldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/coincontroldialog.cpp -------------------------------------------------------------------------------- /src/qt/coincontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/coincontroldialog.h -------------------------------------------------------------------------------- /src/qt/coincontroltreewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/coincontroltreewidget.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/csvmodelwriter.cpp -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/customdoublevalidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/customdoublevalidator.h -------------------------------------------------------------------------------- /src/qt/customlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/customlineedit.cpp -------------------------------------------------------------------------------- /src/qt/customlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/customlineedit.h -------------------------------------------------------------------------------- /src/qt/customslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/customslider.cpp -------------------------------------------------------------------------------- /src/qt/customslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/customslider.h -------------------------------------------------------------------------------- /src/qt/darksendconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/darksendconfig.cpp -------------------------------------------------------------------------------- /src/qt/darksendconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/darksendconfig.h -------------------------------------------------------------------------------- /src/qt/editaddressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/editaddressdialog.cpp -------------------------------------------------------------------------------- /src/qt/editaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/editaddressdialog.h -------------------------------------------------------------------------------- /src/qt/forms/assetslogin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/assetslogin.ui -------------------------------------------------------------------------------- /src/qt/forms/assetspage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/assetspage.ui -------------------------------------------------------------------------------- /src/qt/forms/candypage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/candypage.ui -------------------------------------------------------------------------------- /src/qt/forms/darksendconfig.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/darksendconfig.ui -------------------------------------------------------------------------------- /src/qt/forms/debugwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/debugwindow.ui -------------------------------------------------------------------------------- /src/qt/forms/intro.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/intro.ui -------------------------------------------------------------------------------- /src/qt/forms/masternodelist.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/masternodelist.ui -------------------------------------------------------------------------------- /src/qt/forms/modaloverlay.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/modaloverlay.ui -------------------------------------------------------------------------------- /src/qt/forms/openuridialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/openuridialog.ui -------------------------------------------------------------------------------- /src/qt/forms/optionsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/optionsdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/overviewentry.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/overviewentry.ui -------------------------------------------------------------------------------- /src/qt/forms/overviewpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/overviewpage.ui -------------------------------------------------------------------------------- /src/qt/forms/sendcoinsentry.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/forms/sendcoinsentry.ui -------------------------------------------------------------------------------- /src/qt/framelesswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/framelesswidget.cpp -------------------------------------------------------------------------------- /src/qt/framelesswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/framelesswidget.h -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/intro.cpp -------------------------------------------------------------------------------- /src/qt/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/intro.h -------------------------------------------------------------------------------- /src/qt/locale/safe_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/locale/safe_en.ts -------------------------------------------------------------------------------- /src/qt/locale/safe_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/locale/safe_zh_CN.ts -------------------------------------------------------------------------------- /src/qt/locale/safe_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/locale/safe_zh_TW.ts -------------------------------------------------------------------------------- /src/qt/lockedmonthfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/lockedmonthfield.cpp -------------------------------------------------------------------------------- /src/qt/lockedmonthfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/lockedmonthfield.h -------------------------------------------------------------------------------- /src/qt/lockedtransactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/lockedtransactionview.h -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/macdockiconhandler.h -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/macdockiconhandler.mm -------------------------------------------------------------------------------- /src/qt/masternodelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/masternodelist.cpp -------------------------------------------------------------------------------- /src/qt/masternodelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/masternodelist.h -------------------------------------------------------------------------------- /src/qt/modaloverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/modaloverlay.cpp -------------------------------------------------------------------------------- /src/qt/modaloverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/modaloverlay.h -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/openuridialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/openuridialog.cpp -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/optionsdialog.cpp -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/overviewentry.cpp -------------------------------------------------------------------------------- /src/qt/overviewentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/overviewentry.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/paymentrequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/paymentrequest.proto -------------------------------------------------------------------------------- /src/qt/paymentrequestplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/paymentrequestplus.cpp -------------------------------------------------------------------------------- /src/qt/paymentrequestplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/paymentrequestplus.h -------------------------------------------------------------------------------- /src/qt/paymentserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/paymentserver.cpp -------------------------------------------------------------------------------- /src/qt/paymentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/paymentserver.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/peertablemodel.cpp -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/platformstyle.cpp -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/qvalidatedlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/qvalidatedlineedit.cpp -------------------------------------------------------------------------------- /src/qt/qvalidatedlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/qvalidatedlineedit.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/qvaluecombobox.cpp -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/receivecoinsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/receivecoinsdialog.cpp -------------------------------------------------------------------------------- /src/qt/receivecoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/receivecoinsdialog.h -------------------------------------------------------------------------------- /src/qt/receiverequestdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/receiverequestdialog.h -------------------------------------------------------------------------------- /src/qt/res/css/crownium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/css/crownium.css -------------------------------------------------------------------------------- /src/qt/res/css/drkblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/css/drkblue.css -------------------------------------------------------------------------------- /src/qt/res/css/light-hires.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/css/light-hires.css -------------------------------------------------------------------------------- /src/qt/res/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/css/light.css -------------------------------------------------------------------------------- /src/qt/res/icons/bitcoin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/bitcoin.icns -------------------------------------------------------------------------------- /src/qt/res/icons/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/bitcoin.ico -------------------------------------------------------------------------------- /src/qt/res/icons/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/bitcoin.png -------------------------------------------------------------------------------- /src/qt/res/icons/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/chevron.png -------------------------------------------------------------------------------- /src/qt/res/icons/light/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/light/add.png -------------------------------------------------------------------------------- /src/qt/res/icons/light/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/light/eye.png -------------------------------------------------------------------------------- /src/qt/res/icons/light/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/light/key.png -------------------------------------------------------------------------------- /src/qt/res/icons/light/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/light/max.png -------------------------------------------------------------------------------- /src/qt/res/icons/light/min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/light/min.png -------------------------------------------------------------------------------- /src/qt/res/icons/trad/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/trad/add.png -------------------------------------------------------------------------------- /src/qt/res/icons/trad/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/trad/edit.png -------------------------------------------------------------------------------- /src/qt/res/icons/trad/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/trad/eye.png -------------------------------------------------------------------------------- /src/qt/res/icons/trad/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/trad/key.png -------------------------------------------------------------------------------- /src/qt/res/icons/trad/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/trad/quit.png -------------------------------------------------------------------------------- /src/qt/res/icons/trad/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/trad/send.png -------------------------------------------------------------------------------- /src/qt/res/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/icons/warning.png -------------------------------------------------------------------------------- /src/qt/res/safe-qt-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/safe-qt-res.rc -------------------------------------------------------------------------------- /src/qt/res/src/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/bitcoin.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/clock_0.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/clock_1.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/clock_2.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/clock_3.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/clock_4.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/connect-0.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/connect-1.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/connect-2.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/connect-3.svg -------------------------------------------------------------------------------- /src/qt/res/src/connect-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/connect-4.svg -------------------------------------------------------------------------------- /src/qt/res/src/hd_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/hd_disabled.svg -------------------------------------------------------------------------------- /src/qt/res/src/hd_enabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/hd_enabled.svg -------------------------------------------------------------------------------- /src/qt/res/src/mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/mine.svg -------------------------------------------------------------------------------- /src/qt/res/src/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/qt.svg -------------------------------------------------------------------------------- /src/qt/res/src/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/spinner.png -------------------------------------------------------------------------------- /src/qt/res/src/tx_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/tx_in.svg -------------------------------------------------------------------------------- /src/qt/res/src/tx_inout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/tx_inout.svg -------------------------------------------------------------------------------- /src/qt/res/src/verify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/res/src/verify.svg -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/safe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/safe.cpp -------------------------------------------------------------------------------- /src/qt/safe.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/safe.qrc -------------------------------------------------------------------------------- /src/qt/safe_locale.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/safe_locale.qrc -------------------------------------------------------------------------------- /src/qt/safestrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/safestrings.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/sendcoinsdialog.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/sendcoinsdialog.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/sendcoinsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/test/Makefile -------------------------------------------------------------------------------- /src/qt/test/compattests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/test/compattests.cpp -------------------------------------------------------------------------------- /src/qt/test/compattests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/test/compattests.h -------------------------------------------------------------------------------- /src/qt/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/test/test_main.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/test/uritests.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/titlebar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/titlebar.cpp -------------------------------------------------------------------------------- /src/qt/titlebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/titlebar.h -------------------------------------------------------------------------------- /src/qt/trafficgraphdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/trafficgraphdata.cpp -------------------------------------------------------------------------------- /src/qt/trafficgraphdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/trafficgraphdata.h -------------------------------------------------------------------------------- /src/qt/trafficgraphwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/trafficgraphwidget.cpp -------------------------------------------------------------------------------- /src/qt/trafficgraphwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/trafficgraphwidget.h -------------------------------------------------------------------------------- /src/qt/transactiondesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/transactiondesc.cpp -------------------------------------------------------------------------------- /src/qt/transactiondesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/transactiondesc.h -------------------------------------------------------------------------------- /src/qt/transactiondescdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/transactiondescdialog.h -------------------------------------------------------------------------------- /src/qt/transactionrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/transactionrecord.cpp -------------------------------------------------------------------------------- /src/qt/transactionrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/transactionrecord.h -------------------------------------------------------------------------------- /src/qt/transactiontablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/transactiontablemodel.h -------------------------------------------------------------------------------- /src/qt/transactionview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/transactionview.cpp -------------------------------------------------------------------------------- /src/qt/transactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/transactionview.h -------------------------------------------------------------------------------- /src/qt/updateTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/updateTransaction.cpp -------------------------------------------------------------------------------- /src/qt/updateTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/updateTransaction.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/utilitydialog.cpp -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/qt/winshutdownmonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/winshutdownmonitor.cpp -------------------------------------------------------------------------------- /src/qt/winshutdownmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/qt/winshutdownmonitor.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/random.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverselock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/reverselock.h -------------------------------------------------------------------------------- /src/rpc/blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/blockchain.cpp -------------------------------------------------------------------------------- /src/rpc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/client.cpp -------------------------------------------------------------------------------- /src/rpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/client.h -------------------------------------------------------------------------------- /src/rpc/governance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/governance.cpp -------------------------------------------------------------------------------- /src/rpc/masternode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/masternode.cpp -------------------------------------------------------------------------------- /src/rpc/mining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/mining.cpp -------------------------------------------------------------------------------- /src/rpc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/misc.cpp -------------------------------------------------------------------------------- /src/rpc/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/net.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/protocol.cpp -------------------------------------------------------------------------------- /src/rpc/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/protocol.h -------------------------------------------------------------------------------- /src/rpc/rawtransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/rawtransaction.cpp -------------------------------------------------------------------------------- /src/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/server.cpp -------------------------------------------------------------------------------- /src/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/rpc/server.h -------------------------------------------------------------------------------- /src/safe-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/safe-cli-res.rc -------------------------------------------------------------------------------- /src/safe-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/safe-cli.cpp -------------------------------------------------------------------------------- /src/safe-tx-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/safe-tx-res.rc -------------------------------------------------------------------------------- /src/safe-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/safe-tx.cpp -------------------------------------------------------------------------------- /src/safed-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/safed-res.rc -------------------------------------------------------------------------------- /src/safed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/safed.cpp -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/script/interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/interpreter.cpp -------------------------------------------------------------------------------- /src/script/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/interpreter.h -------------------------------------------------------------------------------- /src/script/safeconsensus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/safeconsensus.cpp -------------------------------------------------------------------------------- /src/script/safeconsensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/safeconsensus.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/script_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/script_error.cpp -------------------------------------------------------------------------------- /src/script/script_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/script_error.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/standard.cpp -------------------------------------------------------------------------------- /src/script/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/script/standard.h -------------------------------------------------------------------------------- /src/secp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/.gitignore -------------------------------------------------------------------------------- /src/secp256k1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/.travis.yml -------------------------------------------------------------------------------- /src/secp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/COPYING -------------------------------------------------------------------------------- /src/secp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/Makefile.am -------------------------------------------------------------------------------- /src/secp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/README.md -------------------------------------------------------------------------------- /src/secp256k1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/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/SAFE-anwang/safe/HEAD/src/secp256k1/configure.ac -------------------------------------------------------------------------------- /src/secp256k1/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/secp256k1/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/bench.h -------------------------------------------------------------------------------- /src/secp256k1/src/bench_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/bench_ecdh.c -------------------------------------------------------------------------------- /src/secp256k1/src/bench_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/bench_sign.c -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/ecdsa_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/eckey.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/eckey_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/ecmult.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecmult_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/ecmult_gen.h -------------------------------------------------------------------------------- /src/secp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/field.h -------------------------------------------------------------------------------- /src/secp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/group.h -------------------------------------------------------------------------------- /src/secp256k1/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/hash.h -------------------------------------------------------------------------------- /src/secp256k1/src/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/num.h -------------------------------------------------------------------------------- /src/secp256k1/src/num_gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/num_gmp.h -------------------------------------------------------------------------------- /src/secp256k1/src/num_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/num_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/scalar.h -------------------------------------------------------------------------------- /src/secp256k1/src/testrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/testrand.h -------------------------------------------------------------------------------- /src/secp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/tests.c -------------------------------------------------------------------------------- /src/secp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/secp256k1/src/util.h -------------------------------------------------------------------------------- /src/sendalert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/sendalert.cpp -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/spentindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/spentindex.h -------------------------------------------------------------------------------- /src/spork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/spork.cpp -------------------------------------------------------------------------------- /src/spork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/spork.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/support/cleanse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/support/cleanse.cpp -------------------------------------------------------------------------------- /src/support/cleanse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/support/cleanse.h -------------------------------------------------------------------------------- /src/support/pagelocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/support/pagelocker.cpp -------------------------------------------------------------------------------- /src/support/pagelocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/support/pagelocker.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/DoS_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/DoS_tests.cpp -------------------------------------------------------------------------------- /src/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/Makefile -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/addrman_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/addrman_tests.cpp -------------------------------------------------------------------------------- /src/test/alert_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/alert_tests.cpp -------------------------------------------------------------------------------- /src/test/allocator_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/allocator_tests.cpp -------------------------------------------------------------------------------- /src/test/base32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/base32_tests.cpp -------------------------------------------------------------------------------- /src/test/base58_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/base58_tests.cpp -------------------------------------------------------------------------------- /src/test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/base64_tests.cpp -------------------------------------------------------------------------------- /src/test/bctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/bctest.py -------------------------------------------------------------------------------- /src/test/bip32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/bip32_tests.cpp -------------------------------------------------------------------------------- /src/test/bip39_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/bip39_tests.cpp -------------------------------------------------------------------------------- /src/test/bloom_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/bloom_tests.cpp -------------------------------------------------------------------------------- /src/test/bswap_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/bswap_tests.cpp -------------------------------------------------------------------------------- /src/test/buildenv.py.in: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | exeext="@EXEEXT@" 3 | -------------------------------------------------------------------------------- /src/test/cachemap_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/cachemap_tests.cpp -------------------------------------------------------------------------------- /src/test/coins_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/coins_tests.cpp -------------------------------------------------------------------------------- /src/test/compress_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/compress_tests.cpp -------------------------------------------------------------------------------- /src/test/crypto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/crypto_tests.cpp -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/data/alertTests.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/data/alertTests.raw -------------------------------------------------------------------------------- /src/test/data/blanktx.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/data/blanktx.hex -------------------------------------------------------------------------------- /src/test/data/sighash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/data/sighash.json -------------------------------------------------------------------------------- /src/test/data/tx394b54bb.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/data/tx394b54bb.hex -------------------------------------------------------------------------------- /src/test/data/tx_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/data/tx_valid.json -------------------------------------------------------------------------------- /src/test/data/txcreate1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/data/txcreate1.hex -------------------------------------------------------------------------------- /src/test/data/txcreate2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/data/txcreate2.hex -------------------------------------------------------------------------------- /src/test/dbwrapper_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/dbwrapper_tests.cpp -------------------------------------------------------------------------------- /src/test/getarg_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/getarg_tests.cpp -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/main_tests.cpp -------------------------------------------------------------------------------- /src/test/mempool_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/mempool_tests.cpp -------------------------------------------------------------------------------- /src/test/merkle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/merkle_tests.cpp -------------------------------------------------------------------------------- /src/test/miner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/miner_tests.cpp -------------------------------------------------------------------------------- /src/test/multisig_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/multisig_tests.cpp -------------------------------------------------------------------------------- /src/test/net_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/net_tests.cpp -------------------------------------------------------------------------------- /src/test/netbase_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/netbase_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/pow_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/pow_tests.cpp -------------------------------------------------------------------------------- /src/test/prevector_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/prevector_tests.cpp -------------------------------------------------------------------------------- /src/test/ratecheck_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/ratecheck_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/sanity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/sanity_tests.cpp -------------------------------------------------------------------------------- /src/test/scheduler_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/scheduler_tests.cpp -------------------------------------------------------------------------------- /src/test/script_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/script_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/scriptnum10.h -------------------------------------------------------------------------------- /src/test/scriptnum_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/scriptnum_tests.cpp -------------------------------------------------------------------------------- /src/test/serialize_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/serialize_tests.cpp -------------------------------------------------------------------------------- /src/test/sighash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/sighash_tests.cpp -------------------------------------------------------------------------------- /src/test/skiplist_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/skiplist_tests.cpp -------------------------------------------------------------------------------- /src/test/streams_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/streams_tests.cpp -------------------------------------------------------------------------------- /src/test/test_safe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/test_safe.cpp -------------------------------------------------------------------------------- /src/test/test_safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/test_safe.h -------------------------------------------------------------------------------- /src/test/timedata_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/timedata_tests.cpp -------------------------------------------------------------------------------- /src/test/uint256_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/uint256_tests.cpp -------------------------------------------------------------------------------- /src/test/univalue_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/univalue_tests.cpp -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/threadinterrupt.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/threadinterrupt.h -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/torcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/torcontrol.cpp -------------------------------------------------------------------------------- /src/torcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/torcontrol.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/ui_interface.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/.gitignore -------------------------------------------------------------------------------- /src/univalue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/.travis.yml -------------------------------------------------------------------------------- /src/univalue/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/COPYING -------------------------------------------------------------------------------- /src/univalue/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/Makefile.am -------------------------------------------------------------------------------- /src/univalue/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/README -------------------------------------------------------------------------------- /src/univalue/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/TODO -------------------------------------------------------------------------------- /src/univalue/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/autogen.sh -------------------------------------------------------------------------------- /src/univalue/build-aux/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /*.m4 2 | -------------------------------------------------------------------------------- /src/univalue/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/configure.ac -------------------------------------------------------------------------------- /src/univalue/gen/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/gen/gen.cpp -------------------------------------------------------------------------------- /src/univalue/lib/.gitignore: -------------------------------------------------------------------------------- 1 | gen 2 | .libs 3 | -------------------------------------------------------------------------------- /src/univalue/test/.gitignore: -------------------------------------------------------------------------------- 1 | unitester 2 | 3 | *.trs 4 | *.log 5 | -------------------------------------------------------------------------------- /src/univalue/test/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /src/univalue/test/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /src/univalue/test/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /src/univalue/test/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /src/univalue/test/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /src/univalue/test/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /src/univalue/test/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /src/univalue/test/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /src/univalue/test/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /src/univalue/test/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /src/univalue/test/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /src/univalue/test/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /src/univalue/test/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /src/univalue/test/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /src/univalue/test/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /src/univalue/test/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /src/univalue/test/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /src/univalue/test/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /src/univalue/test/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /src/univalue/test/fail3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/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/fail36.json: -------------------------------------------------------------------------------- 1 | {"a":} 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail37.json: -------------------------------------------------------------------------------- 1 | {"a":1 "b":2} 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail38.json: -------------------------------------------------------------------------------- 1 | ["\ud834"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail39.json: -------------------------------------------------------------------------------- 1 | ["\udd61"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /src/univalue/test/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /src/univalue/test/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /src/univalue/test/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /src/univalue/test/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /src/univalue/test/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /src/univalue/test/pass1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/test/pass1.json -------------------------------------------------------------------------------- /src/univalue/test/pass2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/test/pass2.json -------------------------------------------------------------------------------- /src/univalue/test/pass3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/univalue/test/pass3.json -------------------------------------------------------------------------------- /src/univalue/test/round2.json: -------------------------------------------------------------------------------- 1 | ["a§■𐎒𝅘𝅥𝅯"] 2 | -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/util.h -------------------------------------------------------------------------------- /src/utilmoneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/utilmoneystr.cpp -------------------------------------------------------------------------------- /src/utilmoneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/utilmoneystr.h -------------------------------------------------------------------------------- /src/utilstrencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/utilstrencodings.cpp -------------------------------------------------------------------------------- /src/utilstrencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/utilstrencodings.h -------------------------------------------------------------------------------- /src/utiltime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/utiltime.cpp -------------------------------------------------------------------------------- /src/utiltime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/utiltime.h -------------------------------------------------------------------------------- /src/validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/validation.cpp -------------------------------------------------------------------------------- /src/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/validation.h -------------------------------------------------------------------------------- /src/validationinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/validationinterface.cpp -------------------------------------------------------------------------------- /src/validationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/validationinterface.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/version.h -------------------------------------------------------------------------------- /src/versionbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/versionbits.cpp -------------------------------------------------------------------------------- /src/versionbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/versionbits.h -------------------------------------------------------------------------------- /src/wallet/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/crypter.cpp -------------------------------------------------------------------------------- /src/wallet/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/crypter.h -------------------------------------------------------------------------------- /src/wallet/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/db.cpp -------------------------------------------------------------------------------- /src/wallet/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/db.h -------------------------------------------------------------------------------- /src/wallet/rpcdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/rpcdump.cpp -------------------------------------------------------------------------------- /src/wallet/rpcwallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/rpcwallet.cpp -------------------------------------------------------------------------------- /src/wallet/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/wallet.cpp -------------------------------------------------------------------------------- /src/wallet/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/wallet.h -------------------------------------------------------------------------------- /src/wallet/wallet_ismine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/wallet_ismine.cpp -------------------------------------------------------------------------------- /src/wallet/wallet_ismine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/wallet_ismine.h -------------------------------------------------------------------------------- /src/wallet/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/walletdb.cpp -------------------------------------------------------------------------------- /src/wallet/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/wallet/walletdb.h -------------------------------------------------------------------------------- /src/zmq/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/zmq/zmqconfig.h -------------------------------------------------------------------------------- /src/zmq/zmqpublishnotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAFE-anwang/safe/HEAD/src/zmq/zmqpublishnotifier.h --------------------------------------------------------------------------------