├── .gitignore ├── CMakeLists.txt ├── cmake-bitcoin └── CMakeLists.txt ├── cmake-bitcoind └── CMakeLists.txt ├── cmake-bitcoinr └── CMakeLists.txt ├── cmake-modules ├── FindBerkeleyDB.cmake ├── FindCUDA.cmake ├── FindCUDA │ ├── make2cmake.cmake │ ├── parse_cubin.cmake │ └── run_nvcc.cmake └── FindOpenCL.cmake ├── cmake-rpcminer └── CMakeLists.txt ├── gpl-2.0.txt ├── license.txt ├── readme.txt └── src ├── base58.h ├── bignum.h ├── build-msw.txt ├── build-osx.txt ├── build-unix.txt ├── coding.txt ├── cryptopp ├── License.txt ├── Readme.txt ├── config.h ├── cpu.cpp ├── cpu.h ├── cryptlib.h ├── iterhash.h ├── misc.h ├── obj ├── pch.h ├── secblock.h ├── sha.cpp ├── sha.h ├── simple.h ├── smartptr.h └── stdcpp.h ├── cuda ├── bitcoinminercuda.cpp ├── bitcoinminercuda.cu ├── bitcoinminercuda.h └── cudashared.h ├── db.cpp ├── db.h ├── gpl-2.0.txt ├── gpucommon ├── gpucommon.cpp ├── gpucommon.h └── gpurunner.h ├── headers.h ├── init.cpp ├── init.h ├── irc.cpp ├── irc.h ├── json ├── LICENSE.txt ├── json_spirit.h ├── json_spirit_error_position.h ├── json_spirit_reader.cpp ├── json_spirit_reader.h ├── json_spirit_reader_template.h ├── json_spirit_stream_reader.h ├── json_spirit_utils.h ├── json_spirit_value.cpp ├── json_spirit_value.h ├── json_spirit_writer.cpp ├── json_spirit_writer.h └── json_spirit_writer_template.h ├── key.h ├── license.txt ├── locale ├── de │ └── LC_MESSAGES │ │ ├── bitcoin.mo │ │ └── bitcoin.po ├── es │ └── LC_MESSAGES │ │ ├── bitcoin.mo │ │ └── bitcoin.po ├── fr │ └── LC_MESSAGES │ │ ├── bitcoin.mo │ │ └── bitcoin.po ├── it │ └── LC_MESSAGES │ │ ├── bitcoin.mo │ │ └── bitcoin.po ├── nl │ └── LC_MESSAGES │ │ ├── bitcoin.mo │ │ └── bitcoin.po ├── pt │ └── LC_MESSAGES │ │ ├── bitcoin.mo │ │ └── bitcoin.po ├── readme.txt └── ru │ └── LC_MESSAGES │ ├── bitcoin.mo │ └── bitcoin.po ├── main.cpp ├── main.h ├── makefile.mingw ├── makefile.osx ├── makefile.unix ├── makefile.vc ├── minercommon ├── base64.c ├── base64.h └── minerheaders.h ├── net.cpp ├── net.h ├── noui.h ├── obj └── nogui ├── opencl ├── bitcoinmineropencl.cl ├── bitcoinmineropencl.cpp ├── bitcoinmineropencl.h └── openclshared.h ├── rc ├── addressbook16.bmp ├── addressbook16mask.bmp ├── addressbook20.bmp ├── addressbook20mask.bmp ├── bitcoin-bc.ico ├── bitcoin.ico ├── check.ico ├── favicon.ico ├── send16.bmp ├── send16mask.bmp ├── send16masknoshadow.bmp ├── send20.bmp └── send20mask.bmp ├── remote ├── cuda │ ├── bitcoinminercuda.cpp │ ├── bitcoinminercuda.cu │ ├── bitcoinminercuda.h │ └── cudashared.h ├── opencl │ ├── bitcoinmineropencl.cpp │ ├── bitcoinmineropencl.h │ ├── openclshared.h │ └── remotebitcoinmineropencl.cl ├── remoteminer.cpp ├── remoteminer.h ├── remoteminerclient.cpp ├── remoteminerclient.h ├── remoteminermessage.cpp ├── remoteminermessage.h ├── remoteminerthread.h ├── remoteminerthreadcpu.cpp ├── remoteminerthreadcpu.h ├── remoteminerthreadgpu.cpp ├── remoteminerthreadgpu.h └── timestats.h ├── remoteminermain.cpp ├── rpc.cpp ├── rpc.h ├── rpcminer ├── hex.cpp ├── hex.h ├── httprequest.cpp ├── httprequest.h ├── rpcminerclient.cpp ├── rpcminerclient.h ├── rpcminermain.cpp ├── rpcminerthread.h ├── rpcminerthreadcpu.cpp ├── rpcminerthreadcpu.h ├── rpcminerthreadgpu.cpp ├── rpcminerthreadgpu.h ├── rpcrequest.cpp └── rpcrequest.h ├── script.cpp ├── script.h ├── serialize.h ├── setup.nsi ├── sha256.cpp ├── strlcpy.h ├── ui.cpp ├── ui.h ├── ui.rc ├── uibase.cpp ├── uibase.h ├── uint256.h ├── uiproject.fbp ├── util.cpp ├── util.h ├── winstdint.h └── xpm ├── about.xpm ├── addressbook16.xpm ├── addressbook20.xpm ├── bitcoin16.xpm ├── bitcoin20.xpm ├── bitcoin32.xpm ├── bitcoin48.xpm ├── bitcoin80.xpm ├── check.xpm ├── send16.xpm ├── send16noshadow.xpm └── send20.xpm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /cmake-bitcoin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-bitcoin/CMakeLists.txt -------------------------------------------------------------------------------- /cmake-bitcoind/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-bitcoind/CMakeLists.txt -------------------------------------------------------------------------------- /cmake-bitcoinr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-bitcoinr/CMakeLists.txt -------------------------------------------------------------------------------- /cmake-modules/FindBerkeleyDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-modules/FindBerkeleyDB.cmake -------------------------------------------------------------------------------- /cmake-modules/FindCUDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-modules/FindCUDA.cmake -------------------------------------------------------------------------------- /cmake-modules/FindCUDA/make2cmake.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-modules/FindCUDA/make2cmake.cmake -------------------------------------------------------------------------------- /cmake-modules/FindCUDA/parse_cubin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-modules/FindCUDA/parse_cubin.cmake -------------------------------------------------------------------------------- /cmake-modules/FindCUDA/run_nvcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-modules/FindCUDA/run_nvcc.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-modules/FindOpenCL.cmake -------------------------------------------------------------------------------- /cmake-rpcminer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/cmake-rpcminer/CMakeLists.txt -------------------------------------------------------------------------------- /gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/gpl-2.0.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/license.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/readme.txt -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/bignum.h -------------------------------------------------------------------------------- /src/build-msw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/build-msw.txt -------------------------------------------------------------------------------- /src/build-osx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/build-osx.txt -------------------------------------------------------------------------------- /src/build-unix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/build-unix.txt -------------------------------------------------------------------------------- /src/coding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/coding.txt -------------------------------------------------------------------------------- /src/cryptopp/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/License.txt -------------------------------------------------------------------------------- /src/cryptopp/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/Readme.txt -------------------------------------------------------------------------------- /src/cryptopp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/config.h -------------------------------------------------------------------------------- /src/cryptopp/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/cpu.cpp -------------------------------------------------------------------------------- /src/cryptopp/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/cpu.h -------------------------------------------------------------------------------- /src/cryptopp/cryptlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/cryptlib.h -------------------------------------------------------------------------------- /src/cryptopp/iterhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/iterhash.h -------------------------------------------------------------------------------- /src/cryptopp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/misc.h -------------------------------------------------------------------------------- /src/cryptopp/obj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cryptopp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/pch.h -------------------------------------------------------------------------------- /src/cryptopp/secblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/secblock.h -------------------------------------------------------------------------------- /src/cryptopp/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/sha.cpp -------------------------------------------------------------------------------- /src/cryptopp/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/sha.h -------------------------------------------------------------------------------- /src/cryptopp/simple.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/cryptopp/smartptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/smartptr.h -------------------------------------------------------------------------------- /src/cryptopp/stdcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cryptopp/stdcpp.h -------------------------------------------------------------------------------- /src/cuda/bitcoinminercuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cuda/bitcoinminercuda.cpp -------------------------------------------------------------------------------- /src/cuda/bitcoinminercuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cuda/bitcoinminercuda.cu -------------------------------------------------------------------------------- /src/cuda/bitcoinminercuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cuda/bitcoinminercuda.h -------------------------------------------------------------------------------- /src/cuda/cudashared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/cuda/cudashared.h -------------------------------------------------------------------------------- /src/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/db.cpp -------------------------------------------------------------------------------- /src/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/db.h -------------------------------------------------------------------------------- /src/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/gpl-2.0.txt -------------------------------------------------------------------------------- /src/gpucommon/gpucommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/gpucommon/gpucommon.cpp -------------------------------------------------------------------------------- /src/gpucommon/gpucommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/gpucommon/gpucommon.h -------------------------------------------------------------------------------- /src/gpucommon/gpurunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/gpucommon/gpurunner.h -------------------------------------------------------------------------------- /src/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/headers.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/init.h -------------------------------------------------------------------------------- /src/irc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/irc.cpp -------------------------------------------------------------------------------- /src/irc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/irc.h -------------------------------------------------------------------------------- /src/json/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/LICENSE.txt -------------------------------------------------------------------------------- /src/json/json_spirit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit.h -------------------------------------------------------------------------------- /src/json/json_spirit_error_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_error_position.h -------------------------------------------------------------------------------- /src/json/json_spirit_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_reader.cpp -------------------------------------------------------------------------------- /src/json/json_spirit_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_reader.h -------------------------------------------------------------------------------- /src/json/json_spirit_reader_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_reader_template.h -------------------------------------------------------------------------------- /src/json/json_spirit_stream_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_stream_reader.h -------------------------------------------------------------------------------- /src/json/json_spirit_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_utils.h -------------------------------------------------------------------------------- /src/json/json_spirit_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_value.cpp -------------------------------------------------------------------------------- /src/json/json_spirit_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_value.h -------------------------------------------------------------------------------- /src/json/json_spirit_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_writer.cpp -------------------------------------------------------------------------------- /src/json/json_spirit_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_writer.h -------------------------------------------------------------------------------- /src/json/json_spirit_writer_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/json/json_spirit_writer_template.h -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/key.h -------------------------------------------------------------------------------- /src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/license.txt -------------------------------------------------------------------------------- /src/locale/de/LC_MESSAGES/bitcoin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/de/LC_MESSAGES/bitcoin.mo -------------------------------------------------------------------------------- /src/locale/de/LC_MESSAGES/bitcoin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/de/LC_MESSAGES/bitcoin.po -------------------------------------------------------------------------------- /src/locale/es/LC_MESSAGES/bitcoin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/es/LC_MESSAGES/bitcoin.mo -------------------------------------------------------------------------------- /src/locale/es/LC_MESSAGES/bitcoin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/es/LC_MESSAGES/bitcoin.po -------------------------------------------------------------------------------- /src/locale/fr/LC_MESSAGES/bitcoin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/fr/LC_MESSAGES/bitcoin.mo -------------------------------------------------------------------------------- /src/locale/fr/LC_MESSAGES/bitcoin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/fr/LC_MESSAGES/bitcoin.po -------------------------------------------------------------------------------- /src/locale/it/LC_MESSAGES/bitcoin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/it/LC_MESSAGES/bitcoin.mo -------------------------------------------------------------------------------- /src/locale/it/LC_MESSAGES/bitcoin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/it/LC_MESSAGES/bitcoin.po -------------------------------------------------------------------------------- /src/locale/nl/LC_MESSAGES/bitcoin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/nl/LC_MESSAGES/bitcoin.mo -------------------------------------------------------------------------------- /src/locale/nl/LC_MESSAGES/bitcoin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/nl/LC_MESSAGES/bitcoin.po -------------------------------------------------------------------------------- /src/locale/pt/LC_MESSAGES/bitcoin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/pt/LC_MESSAGES/bitcoin.mo -------------------------------------------------------------------------------- /src/locale/pt/LC_MESSAGES/bitcoin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/pt/LC_MESSAGES/bitcoin.po -------------------------------------------------------------------------------- /src/locale/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/readme.txt -------------------------------------------------------------------------------- /src/locale/ru/LC_MESSAGES/bitcoin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/ru/LC_MESSAGES/bitcoin.mo -------------------------------------------------------------------------------- /src/locale/ru/LC_MESSAGES/bitcoin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/locale/ru/LC_MESSAGES/bitcoin.po -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/main.h -------------------------------------------------------------------------------- /src/makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/makefile.mingw -------------------------------------------------------------------------------- /src/makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/makefile.osx -------------------------------------------------------------------------------- /src/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/makefile.unix -------------------------------------------------------------------------------- /src/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/makefile.vc -------------------------------------------------------------------------------- /src/minercommon/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/minercommon/base64.c -------------------------------------------------------------------------------- /src/minercommon/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/minercommon/base64.h -------------------------------------------------------------------------------- /src/minercommon/minerheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/minercommon/minerheaders.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/net.h -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/obj/nogui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opencl/bitcoinmineropencl.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/opencl/bitcoinmineropencl.cl -------------------------------------------------------------------------------- /src/opencl/bitcoinmineropencl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/opencl/bitcoinmineropencl.cpp -------------------------------------------------------------------------------- /src/opencl/bitcoinmineropencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/opencl/bitcoinmineropencl.h -------------------------------------------------------------------------------- /src/opencl/openclshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/opencl/openclshared.h -------------------------------------------------------------------------------- /src/rc/addressbook16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/addressbook16.bmp -------------------------------------------------------------------------------- /src/rc/addressbook16mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/addressbook16mask.bmp -------------------------------------------------------------------------------- /src/rc/addressbook20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/addressbook20.bmp -------------------------------------------------------------------------------- /src/rc/addressbook20mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/addressbook20mask.bmp -------------------------------------------------------------------------------- /src/rc/bitcoin-bc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/bitcoin-bc.ico -------------------------------------------------------------------------------- /src/rc/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/bitcoin.ico -------------------------------------------------------------------------------- /src/rc/check.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/check.ico -------------------------------------------------------------------------------- /src/rc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/favicon.ico -------------------------------------------------------------------------------- /src/rc/send16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/send16.bmp -------------------------------------------------------------------------------- /src/rc/send16mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/send16mask.bmp -------------------------------------------------------------------------------- /src/rc/send16masknoshadow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/send16masknoshadow.bmp -------------------------------------------------------------------------------- /src/rc/send20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/send20.bmp -------------------------------------------------------------------------------- /src/rc/send20mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rc/send20mask.bmp -------------------------------------------------------------------------------- /src/remote/cuda/bitcoinminercuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/cuda/bitcoinminercuda.cpp -------------------------------------------------------------------------------- /src/remote/cuda/bitcoinminercuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/cuda/bitcoinminercuda.cu -------------------------------------------------------------------------------- /src/remote/cuda/bitcoinminercuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/cuda/bitcoinminercuda.h -------------------------------------------------------------------------------- /src/remote/cuda/cudashared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/cuda/cudashared.h -------------------------------------------------------------------------------- /src/remote/opencl/bitcoinmineropencl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/opencl/bitcoinmineropencl.cpp -------------------------------------------------------------------------------- /src/remote/opencl/bitcoinmineropencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/opencl/bitcoinmineropencl.h -------------------------------------------------------------------------------- /src/remote/opencl/openclshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/opencl/openclshared.h -------------------------------------------------------------------------------- /src/remote/opencl/remotebitcoinmineropencl.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/opencl/remotebitcoinmineropencl.cl -------------------------------------------------------------------------------- /src/remote/remoteminer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminer.cpp -------------------------------------------------------------------------------- /src/remote/remoteminer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminer.h -------------------------------------------------------------------------------- /src/remote/remoteminerclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminerclient.cpp -------------------------------------------------------------------------------- /src/remote/remoteminerclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminerclient.h -------------------------------------------------------------------------------- /src/remote/remoteminermessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminermessage.cpp -------------------------------------------------------------------------------- /src/remote/remoteminermessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminermessage.h -------------------------------------------------------------------------------- /src/remote/remoteminerthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminerthread.h -------------------------------------------------------------------------------- /src/remote/remoteminerthreadcpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminerthreadcpu.cpp -------------------------------------------------------------------------------- /src/remote/remoteminerthreadcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminerthreadcpu.h -------------------------------------------------------------------------------- /src/remote/remoteminerthreadgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminerthreadgpu.cpp -------------------------------------------------------------------------------- /src/remote/remoteminerthreadgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/remoteminerthreadgpu.h -------------------------------------------------------------------------------- /src/remote/timestats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remote/timestats.h -------------------------------------------------------------------------------- /src/remoteminermain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/remoteminermain.cpp -------------------------------------------------------------------------------- /src/rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpc.cpp -------------------------------------------------------------------------------- /src/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpc.h -------------------------------------------------------------------------------- /src/rpcminer/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/hex.cpp -------------------------------------------------------------------------------- /src/rpcminer/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/hex.h -------------------------------------------------------------------------------- /src/rpcminer/httprequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/httprequest.cpp -------------------------------------------------------------------------------- /src/rpcminer/httprequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/httprequest.h -------------------------------------------------------------------------------- /src/rpcminer/rpcminerclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcminerclient.cpp -------------------------------------------------------------------------------- /src/rpcminer/rpcminerclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcminerclient.h -------------------------------------------------------------------------------- /src/rpcminer/rpcminermain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcminermain.cpp -------------------------------------------------------------------------------- /src/rpcminer/rpcminerthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcminerthread.h -------------------------------------------------------------------------------- /src/rpcminer/rpcminerthreadcpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcminerthreadcpu.cpp -------------------------------------------------------------------------------- /src/rpcminer/rpcminerthreadcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcminerthreadcpu.h -------------------------------------------------------------------------------- /src/rpcminer/rpcminerthreadgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcminerthreadgpu.cpp -------------------------------------------------------------------------------- /src/rpcminer/rpcminerthreadgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcminerthreadgpu.h -------------------------------------------------------------------------------- /src/rpcminer/rpcrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcrequest.cpp -------------------------------------------------------------------------------- /src/rpcminer/rpcrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/rpcminer/rpcrequest.h -------------------------------------------------------------------------------- /src/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/script.cpp -------------------------------------------------------------------------------- /src/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/script.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/setup.nsi -------------------------------------------------------------------------------- /src/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/sha256.cpp -------------------------------------------------------------------------------- /src/strlcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/strlcpy.h -------------------------------------------------------------------------------- /src/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/ui.cpp -------------------------------------------------------------------------------- /src/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/ui.h -------------------------------------------------------------------------------- /src/ui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/ui.rc -------------------------------------------------------------------------------- /src/uibase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/uibase.cpp -------------------------------------------------------------------------------- /src/uibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/uibase.h -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/uiproject.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/uiproject.fbp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/util.h -------------------------------------------------------------------------------- /src/winstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/winstdint.h -------------------------------------------------------------------------------- /src/xpm/about.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/about.xpm -------------------------------------------------------------------------------- /src/xpm/addressbook16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/addressbook16.xpm -------------------------------------------------------------------------------- /src/xpm/addressbook20.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/addressbook20.xpm -------------------------------------------------------------------------------- /src/xpm/bitcoin16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/bitcoin16.xpm -------------------------------------------------------------------------------- /src/xpm/bitcoin20.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/bitcoin20.xpm -------------------------------------------------------------------------------- /src/xpm/bitcoin32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/bitcoin32.xpm -------------------------------------------------------------------------------- /src/xpm/bitcoin48.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/bitcoin48.xpm -------------------------------------------------------------------------------- /src/xpm/bitcoin80.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/bitcoin80.xpm -------------------------------------------------------------------------------- /src/xpm/check.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/check.xpm -------------------------------------------------------------------------------- /src/xpm/send16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/send16.xpm -------------------------------------------------------------------------------- /src/xpm/send16noshadow.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/send16noshadow.xpm -------------------------------------------------------------------------------- /src/xpm/send20.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/bitcoin-pool/HEAD/src/xpm/send20.xpm --------------------------------------------------------------------------------