├── CONTRIBUTING.md ├── COPYING ├── INSTALL.md ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── contrib ├── README.md ├── bitcoin-cli.bash-completion ├── bitcoin-qt.pro ├── bitcoin-tx.bash-completion ├── bitcoind.bash-completion ├── debian │ └── copyright ├── devtools │ ├── README.md │ ├── circular-dependencies.py │ ├── clang-format-diff.py │ ├── copyright_header.py │ ├── gen-manpages.sh │ ├── github-merge.py │ ├── optimize-pngs.py │ ├── security-check.py │ ├── split-debug.sh.in │ ├── symbol-check.py │ ├── test-security-check.py │ └── update-translations.py ├── filter-lcov.py ├── gitian-build.py ├── gitian-descriptors │ ├── gitian-linux.yml │ ├── gitian-osx-signer.yml │ ├── gitian-osx.yml │ ├── gitian-win-signer.yml │ └── gitian-win.yml ├── gitian-keys │ ├── README.md │ ├── keys-litecoin.txt │ └── keys.txt ├── init │ ├── README.md │ ├── bitcoind.conf │ ├── bitcoind.init │ ├── bitcoind.openrc │ ├── bitcoind.openrcconf │ ├── bitcoind.service │ └── org.bitcoin.bitcoind.plist ├── install_db4.sh ├── linearize │ ├── README.md │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── LICENSE │ ├── README.md │ ├── background.svg │ ├── custom_dsstore.py │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── extract-osx-sdk.sh │ ├── fancy.plist │ └── macdeployqtplus ├── qos │ ├── README.md │ └── tc.sh ├── seeds │ ├── README.md │ ├── generate-seeds.py │ ├── makeseeds.py │ ├── nodes_main.txt │ └── nodes_test.txt ├── testgen │ ├── README.md │ ├── base58.py │ └── gen_key_io_test_vectors.py ├── valgrind.supp ├── verify-commits │ ├── README.md │ ├── allow-incorrect-sha512-commits │ ├── allow-revsig-commits │ ├── allow-unclean-merge-commits │ ├── gpg.sh │ ├── pre-push-hook.sh │ ├── trusted-git-root │ ├── trusted-keys │ ├── trusted-sha512-root-commit │ └── verify-commits.py ├── verifybinaries │ ├── README.md │ └── verify.sh ├── windeploy │ ├── detached-sig-create.sh │ └── win-codesign.cert └── zmq │ ├── zmq_sub.py │ └── zmq_sub3.4.py ├── libbitcoinconsensus.pc.in ├── package.json ├── src ├── dbwrapper.cpp ├── dbwrapper.h ├── dummywallet.cpp ├── fs.cpp ├── fs.h ├── hash.cpp ├── hash.h ├── httprpc.cpp ├── httprpc.h ├── httpserver.cpp ├── httpserver.h ├── indirectmap.h ├── init.cpp ├── init.h ├── key.cpp ├── key.h ├── key_io.cpp ├── key_io.h ├── keystore.cpp ├── keystore.h ├── limitedmap.h ├── logging.cpp ├── logging.h ├── memusage.h ├── merkleblock.cpp ├── merkleblock.h ├── miner.cpp ├── miner.h ├── net.cpp ├── net.h ├── net_processing.cpp ├── net_processing.h ├── netaddress.cpp ├── netaddress.h ├── netbase.cpp ├── netbase.h ├── netmessagemaker.h ├── noui.cpp ├── noui.h ├── optional.h ├── outputtype.cpp ├── outputtype.h ├── pow.cpp ├── pow.h ├── prevector.h ├── protocol.cpp ├── protocol.h ├── psbt.cpp ├── psbt.h ├── pubkey.cpp ├── pubkey.h ├── random.cpp ├── random.h ├── rest.cpp ├── reverse_iterator.h ├── reverselock.h ├── scheduler.cpp ├── scheduler.h ├── serialize.h ├── shutdown.cpp ├── shutdown.h ├── span.h ├── streams.h ├── sync.cpp ├── sync.h ├── threadinterrupt.cpp ├── threadinterrupt.h ├── threadsafety.h ├── timedata.cpp ├── timedata.h └── tinyformat.h └── test ├── README.md ├── config.ini.in └── lint ├── README.md ├── check-doc.py ├── check-rpc-mappings.py ├── commit-script-check.sh ├── git-subtree-check.sh ├── lint-all.sh ├── lint-assertions.sh ├── lint-circular-dependencies.sh ├── lint-filenames.sh ├── lint-format-strings.py ├── lint-format-strings.sh ├── lint-include-guards.sh ├── lint-includes.sh ├── lint-locale-dependence.sh ├── lint-logs.sh ├── lint-python-dead-code.sh ├── lint-python-utf8-encoding.sh ├── lint-python.sh ├── lint-qt.sh ├── lint-rpc-help.sh ├── lint-shebang.sh ├── lint-shell-locale.sh ├── lint-shell.sh ├── lint-spelling.ignore-words.txt ├── lint-spelling.sh ├── lint-tests.sh └── lint-whitespace.sh /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/bitcoin-cli.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/bitcoin-cli.bash-completion -------------------------------------------------------------------------------- /contrib/bitcoin-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/bitcoin-qt.pro -------------------------------------------------------------------------------- /contrib/bitcoin-tx.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/bitcoin-tx.bash-completion -------------------------------------------------------------------------------- /contrib/bitcoind.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/bitcoind.bash-completion -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/devtools/circular-dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/circular-dependencies.py -------------------------------------------------------------------------------- /contrib/devtools/clang-format-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/clang-format-diff.py -------------------------------------------------------------------------------- /contrib/devtools/copyright_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/copyright_header.py -------------------------------------------------------------------------------- /contrib/devtools/gen-manpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/gen-manpages.sh -------------------------------------------------------------------------------- /contrib/devtools/github-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/github-merge.py -------------------------------------------------------------------------------- /contrib/devtools/optimize-pngs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/optimize-pngs.py -------------------------------------------------------------------------------- /contrib/devtools/security-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/security-check.py -------------------------------------------------------------------------------- /contrib/devtools/split-debug.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/split-debug.sh.in -------------------------------------------------------------------------------- /contrib/devtools/symbol-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/symbol-check.py -------------------------------------------------------------------------------- /contrib/devtools/test-security-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/test-security-check.py -------------------------------------------------------------------------------- /contrib/devtools/update-translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/devtools/update-translations.py -------------------------------------------------------------------------------- /contrib/filter-lcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/filter-lcov.py -------------------------------------------------------------------------------- /contrib/gitian-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/gitian-build.py -------------------------------------------------------------------------------- /contrib/gitian-descriptors/gitian-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/gitian-descriptors/gitian-linux.yml -------------------------------------------------------------------------------- /contrib/gitian-descriptors/gitian-osx-signer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/gitian-descriptors/gitian-osx-signer.yml -------------------------------------------------------------------------------- /contrib/gitian-descriptors/gitian-osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/gitian-descriptors/gitian-osx.yml -------------------------------------------------------------------------------- /contrib/gitian-descriptors/gitian-win-signer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/gitian-descriptors/gitian-win-signer.yml -------------------------------------------------------------------------------- /contrib/gitian-descriptors/gitian-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/gitian-descriptors/gitian-win.yml -------------------------------------------------------------------------------- /contrib/gitian-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/gitian-keys/README.md -------------------------------------------------------------------------------- /contrib/gitian-keys/keys-litecoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/gitian-keys/keys-litecoin.txt -------------------------------------------------------------------------------- /contrib/gitian-keys/keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/gitian-keys/keys.txt -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/bitcoind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/init/bitcoind.conf -------------------------------------------------------------------------------- /contrib/init/bitcoind.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/init/bitcoind.init -------------------------------------------------------------------------------- /contrib/init/bitcoind.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/init/bitcoind.openrc -------------------------------------------------------------------------------- /contrib/init/bitcoind.openrcconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/init/bitcoind.openrcconf -------------------------------------------------------------------------------- /contrib/init/bitcoind.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/init/bitcoind.service -------------------------------------------------------------------------------- /contrib/init/org.bitcoin.bitcoind.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/init/org.bitcoin.bitcoind.plist -------------------------------------------------------------------------------- /contrib/install_db4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/install_db4.sh -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/linearize/example-linearize.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/linearize/example-linearize.cfg -------------------------------------------------------------------------------- /contrib/linearize/linearize-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/linearize/linearize-data.py -------------------------------------------------------------------------------- /contrib/linearize/linearize-hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/linearize/linearize-hashes.py -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/macdeploy/background.svg -------------------------------------------------------------------------------- /contrib/macdeploy/custom_dsstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/macdeploy/custom_dsstore.py -------------------------------------------------------------------------------- /contrib/macdeploy/detached-sig-apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/macdeploy/detached-sig-apply.sh -------------------------------------------------------------------------------- /contrib/macdeploy/detached-sig-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/macdeploy/detached-sig-create.sh -------------------------------------------------------------------------------- /contrib/macdeploy/extract-osx-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/macdeploy/extract-osx-sdk.sh -------------------------------------------------------------------------------- /contrib/macdeploy/fancy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/macdeploy/fancy.plist -------------------------------------------------------------------------------- /contrib/macdeploy/macdeployqtplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/macdeploy/macdeployqtplus -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/generate-seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/seeds/generate-seeds.py -------------------------------------------------------------------------------- /contrib/seeds/makeseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/seeds/makeseeds.py -------------------------------------------------------------------------------- /contrib/seeds/nodes_main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/seeds/nodes_main.txt -------------------------------------------------------------------------------- /contrib/seeds/nodes_test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/testgen/gen_key_io_test_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/testgen/gen_key_io_test_vectors.py -------------------------------------------------------------------------------- /contrib/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/valgrind.supp -------------------------------------------------------------------------------- /contrib/verify-commits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verify-commits/README.md -------------------------------------------------------------------------------- /contrib/verify-commits/allow-incorrect-sha512-commits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verify-commits/allow-incorrect-sha512-commits -------------------------------------------------------------------------------- /contrib/verify-commits/allow-revsig-commits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verify-commits/allow-revsig-commits -------------------------------------------------------------------------------- /contrib/verify-commits/allow-unclean-merge-commits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verify-commits/allow-unclean-merge-commits -------------------------------------------------------------------------------- /contrib/verify-commits/gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verify-commits/gpg.sh -------------------------------------------------------------------------------- /contrib/verify-commits/pre-push-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verify-commits/pre-push-hook.sh -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | 82bcf405f6db1d55b684a1f63a4aabad376cdad7 2 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verify-commits/trusted-keys -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-sha512-root-commit: -------------------------------------------------------------------------------- 1 | 309bf16257b2395ce502017be627186b749ee749 2 | -------------------------------------------------------------------------------- /contrib/verify-commits/verify-commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verify-commits/verify-commits.py -------------------------------------------------------------------------------- /contrib/verifybinaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verifybinaries/README.md -------------------------------------------------------------------------------- /contrib/verifybinaries/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/verifybinaries/verify.sh -------------------------------------------------------------------------------- /contrib/windeploy/detached-sig-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/windeploy/detached-sig-create.sh -------------------------------------------------------------------------------- /contrib/windeploy/win-codesign.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/windeploy/win-codesign.cert -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub3.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/contrib/zmq/zmq_sub3.4.py -------------------------------------------------------------------------------- /libbitcoinconsensus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/libbitcoinconsensus.pc.in -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/package.json -------------------------------------------------------------------------------- /src/dbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/dbwrapper.cpp -------------------------------------------------------------------------------- /src/dbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/dbwrapper.h -------------------------------------------------------------------------------- /src/dummywallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/dummywallet.cpp -------------------------------------------------------------------------------- /src/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/fs.cpp -------------------------------------------------------------------------------- /src/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/fs.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/httprpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/httprpc.cpp -------------------------------------------------------------------------------- /src/httprpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/httprpc.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/indirectmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/indirectmap.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/init.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/key.h -------------------------------------------------------------------------------- /src/key_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/key_io.cpp -------------------------------------------------------------------------------- /src/key_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/key_io.h -------------------------------------------------------------------------------- /src/keystore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/keystore.cpp -------------------------------------------------------------------------------- /src/keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/keystore.h -------------------------------------------------------------------------------- /src/limitedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/limitedmap.h -------------------------------------------------------------------------------- /src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/logging.cpp -------------------------------------------------------------------------------- /src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/logging.h -------------------------------------------------------------------------------- /src/memusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/memusage.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/miner.cpp -------------------------------------------------------------------------------- /src/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/miner.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/net.h -------------------------------------------------------------------------------- /src/net_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/net_processing.cpp -------------------------------------------------------------------------------- /src/net_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/net_processing.h -------------------------------------------------------------------------------- /src/netaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/netaddress.cpp -------------------------------------------------------------------------------- /src/netaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/netaddress.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/netmessagemaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/netmessagemaker.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/optional.h -------------------------------------------------------------------------------- /src/outputtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/outputtype.cpp -------------------------------------------------------------------------------- /src/outputtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/outputtype.h -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/prevector.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/psbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/psbt.cpp -------------------------------------------------------------------------------- /src/psbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/psbt.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/random.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverse_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/reverse_iterator.h -------------------------------------------------------------------------------- /src/reverselock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/reverselock.h -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/shutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/shutdown.cpp -------------------------------------------------------------------------------- /src/shutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/shutdown.h -------------------------------------------------------------------------------- /src/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/span.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/threadinterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/threadinterrupt.cpp -------------------------------------------------------------------------------- /src/threadinterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/threadinterrupt.h -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/README.md -------------------------------------------------------------------------------- /test/config.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/config.ini.in -------------------------------------------------------------------------------- /test/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/README.md -------------------------------------------------------------------------------- /test/lint/check-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/check-doc.py -------------------------------------------------------------------------------- /test/lint/check-rpc-mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/check-rpc-mappings.py -------------------------------------------------------------------------------- /test/lint/commit-script-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/commit-script-check.sh -------------------------------------------------------------------------------- /test/lint/git-subtree-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/git-subtree-check.sh -------------------------------------------------------------------------------- /test/lint/lint-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-all.sh -------------------------------------------------------------------------------- /test/lint/lint-assertions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-assertions.sh -------------------------------------------------------------------------------- /test/lint/lint-circular-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-circular-dependencies.sh -------------------------------------------------------------------------------- /test/lint/lint-filenames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-filenames.sh -------------------------------------------------------------------------------- /test/lint/lint-format-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-format-strings.py -------------------------------------------------------------------------------- /test/lint/lint-format-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-format-strings.sh -------------------------------------------------------------------------------- /test/lint/lint-include-guards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-include-guards.sh -------------------------------------------------------------------------------- /test/lint/lint-includes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-includes.sh -------------------------------------------------------------------------------- /test/lint/lint-locale-dependence.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-locale-dependence.sh -------------------------------------------------------------------------------- /test/lint/lint-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-logs.sh -------------------------------------------------------------------------------- /test/lint/lint-python-dead-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-python-dead-code.sh -------------------------------------------------------------------------------- /test/lint/lint-python-utf8-encoding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-python-utf8-encoding.sh -------------------------------------------------------------------------------- /test/lint/lint-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-python.sh -------------------------------------------------------------------------------- /test/lint/lint-qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-qt.sh -------------------------------------------------------------------------------- /test/lint/lint-rpc-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-rpc-help.sh -------------------------------------------------------------------------------- /test/lint/lint-shebang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-shebang.sh -------------------------------------------------------------------------------- /test/lint/lint-shell-locale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-shell-locale.sh -------------------------------------------------------------------------------- /test/lint/lint-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-shell.sh -------------------------------------------------------------------------------- /test/lint/lint-spelling.ignore-words.txt: -------------------------------------------------------------------------------- 1 | cas 2 | hights 3 | mor 4 | mut 5 | objext 6 | unselect 7 | useable 8 | -------------------------------------------------------------------------------- /test/lint/lint-spelling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-spelling.sh -------------------------------------------------------------------------------- /test/lint/lint-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-tests.sh -------------------------------------------------------------------------------- /test/lint/lint-whitespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/smileyCoinDev/HEAD/test/lint/lint-whitespace.sh --------------------------------------------------------------------------------