├── .gitignore ├── LICENSE ├── README.md ├── chainSwitcher ├── Dockerfile ├── README.md ├── build.sh ├── config.default.json ├── entrypoint.sh ├── main.go └── utils.go ├── initNiceHash ├── Dockerfile ├── README.md ├── go.mod ├── go.sum └── main.go ├── install └── cfg-generator │ ├── chainSwitcher.php │ ├── lib │ ├── functions.php │ └── init.php │ └── userChainAPIServer.php ├── mergedMiningProxy ├── AuxJobMaker.go ├── AuxPowData.go ├── AuxPowData_test.go ├── ChainRPC.go ├── ChainSlot.go ├── ConfigData.go ├── DbConnection.go ├── LitecoinScrypt.go ├── Main.go ├── Main_test.go ├── ProxyRPC.go ├── README.md ├── RPCCall.go ├── Utils.go ├── Utils_test.go └── config.default.json ├── stratumSwitcher ├── CMakeLists.txt ├── ConfigData.go ├── Errors.go ├── JSONRPC.go ├── Main.go ├── README.md ├── SessionIDManager.go ├── SessionIDManager_test.go ├── StratumSession.go ├── StratumSessionManager.go ├── Upgradable.go ├── Utils.go ├── Utils_linux.go ├── Utils_windows.go ├── ZookeeperManager.go ├── config.default.json └── supervisor-switcher.conf ├── userChainAPIServer ├── Dockerfile ├── Main.go ├── README.md ├── config.default.json ├── entrypoint.sh ├── initUserCoin │ ├── APIError.go │ ├── HTTPAPI.go │ ├── InitUserCoin.go │ ├── Main.go │ ├── README.md │ ├── UserAutoReg.go │ ├── UserListJSON.cpp │ ├── UserListJSON.h │ ├── Zookeeper.go │ └── config.default.json └── switcherAPIServer │ ├── APIError.go │ ├── CronJob.go │ ├── HTTPAPI.go │ ├── Main.go │ ├── README.md │ ├── Zookeeper.go │ └── config.default.json └── vendor ├── github.com ├── go-sql-driver │ └── mysql │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appengine.go │ │ ├── auth.go │ │ ├── buffer.go │ │ ├── collations.go │ │ ├── connection.go │ │ ├── const.go │ │ ├── driver.go │ │ ├── dsn.go │ │ ├── errors.go │ │ ├── fields.go │ │ ├── infile.go │ │ ├── packets.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── statement.go │ │ ├── transaction.go │ │ └── utils.go ├── golang │ └── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ └── glog_file.go ├── pebbe │ └── zmq4 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── auth.go │ │ ├── ctxoptions_unix.go │ │ ├── ctxoptions_windows.go │ │ ├── doc.go │ │ ├── dummy.c │ │ ├── errors.go │ │ ├── polling.go │ │ ├── reactor.go │ │ ├── socketget.go │ │ ├── socketget_unix.go │ │ ├── socketget_windows.go │ │ ├── socketset.go │ │ ├── utils.go │ │ ├── zmq4.go │ │ └── zmq4.h ├── samuel │ └── go-zookeeper │ │ ├── LICENSE │ │ └── zk │ │ ├── conn.go │ │ ├── constants.go │ │ ├── dnshostprovider.go │ │ ├── flw.go │ │ ├── lock.go │ │ ├── server_help.go │ │ ├── server_java.go │ │ ├── structs.go │ │ └── util.go └── willf │ └── bitset │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── VERSION │ ├── bitset.go │ ├── popcnt.go │ ├── popcnt_19.go │ ├── popcnt_amd64.go │ ├── popcnt_amd64.s │ ├── popcnt_generic.go │ ├── trailing_zeros_18.go │ └── trailing_zeros_19.go ├── golang.org └── x │ └── crypto │ ├── LICENSE │ ├── PATENTS │ ├── pbkdf2 │ └── pbkdf2.go │ └── scrypt │ └── scrypt.go ├── google.golang.org └── appengine │ ├── LICENSE │ └── cloudsql │ ├── cloudsql.go │ ├── cloudsql_classic.go │ └── cloudsql_vm.go ├── merkle-tree-and-bitcoin ├── hash │ ├── byte32.go │ ├── hash.go │ └── hash_test.go ├── licence.txt └── merkle │ ├── merkle.go │ └── merkle_test.go └── vendor.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/README.md -------------------------------------------------------------------------------- /chainSwitcher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/chainSwitcher/Dockerfile -------------------------------------------------------------------------------- /chainSwitcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/chainSwitcher/README.md -------------------------------------------------------------------------------- /chainSwitcher/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/chainSwitcher/build.sh -------------------------------------------------------------------------------- /chainSwitcher/config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/chainSwitcher/config.default.json -------------------------------------------------------------------------------- /chainSwitcher/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/chainSwitcher/entrypoint.sh -------------------------------------------------------------------------------- /chainSwitcher/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/chainSwitcher/main.go -------------------------------------------------------------------------------- /chainSwitcher/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/chainSwitcher/utils.go -------------------------------------------------------------------------------- /initNiceHash/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM golang:1.12 2 | 3 | WORKDIR /work/initNiceHash 4 | COPY . . 5 | 6 | RUN go install -v 7 | 8 | -------------------------------------------------------------------------------- /initNiceHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/initNiceHash/README.md -------------------------------------------------------------------------------- /initNiceHash/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/initNiceHash/go.mod -------------------------------------------------------------------------------- /initNiceHash/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/initNiceHash/go.sum -------------------------------------------------------------------------------- /initNiceHash/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/initNiceHash/main.go -------------------------------------------------------------------------------- /install/cfg-generator/chainSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/install/cfg-generator/chainSwitcher.php -------------------------------------------------------------------------------- /install/cfg-generator/lib/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/install/cfg-generator/lib/functions.php -------------------------------------------------------------------------------- /install/cfg-generator/lib/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/install/cfg-generator/lib/init.php -------------------------------------------------------------------------------- /install/cfg-generator/userChainAPIServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/install/cfg-generator/userChainAPIServer.php -------------------------------------------------------------------------------- /mergedMiningProxy/AuxJobMaker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/AuxJobMaker.go -------------------------------------------------------------------------------- /mergedMiningProxy/AuxPowData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/AuxPowData.go -------------------------------------------------------------------------------- /mergedMiningProxy/AuxPowData_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/AuxPowData_test.go -------------------------------------------------------------------------------- /mergedMiningProxy/ChainRPC.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/ChainRPC.go -------------------------------------------------------------------------------- /mergedMiningProxy/ChainSlot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/ChainSlot.go -------------------------------------------------------------------------------- /mergedMiningProxy/ConfigData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/ConfigData.go -------------------------------------------------------------------------------- /mergedMiningProxy/DbConnection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/DbConnection.go -------------------------------------------------------------------------------- /mergedMiningProxy/LitecoinScrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/LitecoinScrypt.go -------------------------------------------------------------------------------- /mergedMiningProxy/Main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/Main.go -------------------------------------------------------------------------------- /mergedMiningProxy/Main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/Main_test.go -------------------------------------------------------------------------------- /mergedMiningProxy/ProxyRPC.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/ProxyRPC.go -------------------------------------------------------------------------------- /mergedMiningProxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/README.md -------------------------------------------------------------------------------- /mergedMiningProxy/RPCCall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/RPCCall.go -------------------------------------------------------------------------------- /mergedMiningProxy/Utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/Utils.go -------------------------------------------------------------------------------- /mergedMiningProxy/Utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/Utils_test.go -------------------------------------------------------------------------------- /mergedMiningProxy/config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/mergedMiningProxy/config.default.json -------------------------------------------------------------------------------- /stratumSwitcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/CMakeLists.txt -------------------------------------------------------------------------------- /stratumSwitcher/ConfigData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/ConfigData.go -------------------------------------------------------------------------------- /stratumSwitcher/Errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/Errors.go -------------------------------------------------------------------------------- /stratumSwitcher/JSONRPC.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/JSONRPC.go -------------------------------------------------------------------------------- /stratumSwitcher/Main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/Main.go -------------------------------------------------------------------------------- /stratumSwitcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/README.md -------------------------------------------------------------------------------- /stratumSwitcher/SessionIDManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/SessionIDManager.go -------------------------------------------------------------------------------- /stratumSwitcher/SessionIDManager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/SessionIDManager_test.go -------------------------------------------------------------------------------- /stratumSwitcher/StratumSession.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/StratumSession.go -------------------------------------------------------------------------------- /stratumSwitcher/StratumSessionManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/StratumSessionManager.go -------------------------------------------------------------------------------- /stratumSwitcher/Upgradable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/Upgradable.go -------------------------------------------------------------------------------- /stratumSwitcher/Utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/Utils.go -------------------------------------------------------------------------------- /stratumSwitcher/Utils_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/Utils_linux.go -------------------------------------------------------------------------------- /stratumSwitcher/Utils_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/Utils_windows.go -------------------------------------------------------------------------------- /stratumSwitcher/ZookeeperManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/ZookeeperManager.go -------------------------------------------------------------------------------- /stratumSwitcher/config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/config.default.json -------------------------------------------------------------------------------- /stratumSwitcher/supervisor-switcher.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/stratumSwitcher/supervisor-switcher.conf -------------------------------------------------------------------------------- /userChainAPIServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/Dockerfile -------------------------------------------------------------------------------- /userChainAPIServer/Main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/Main.go -------------------------------------------------------------------------------- /userChainAPIServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/README.md -------------------------------------------------------------------------------- /userChainAPIServer/config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/config.default.json -------------------------------------------------------------------------------- /userChainAPIServer/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/entrypoint.sh -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/APIError.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/APIError.go -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/HTTPAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/HTTPAPI.go -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/InitUserCoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/InitUserCoin.go -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/Main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/Main.go -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/README.md -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/UserAutoReg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/UserAutoReg.go -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/UserListJSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/UserListJSON.cpp -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/UserListJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/UserListJSON.h -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/Zookeeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/Zookeeper.go -------------------------------------------------------------------------------- /userChainAPIServer/initUserCoin/config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/initUserCoin/config.default.json -------------------------------------------------------------------------------- /userChainAPIServer/switcherAPIServer/APIError.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/switcherAPIServer/APIError.go -------------------------------------------------------------------------------- /userChainAPIServer/switcherAPIServer/CronJob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/switcherAPIServer/CronJob.go -------------------------------------------------------------------------------- /userChainAPIServer/switcherAPIServer/HTTPAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/switcherAPIServer/HTTPAPI.go -------------------------------------------------------------------------------- /userChainAPIServer/switcherAPIServer/Main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/switcherAPIServer/Main.go -------------------------------------------------------------------------------- /userChainAPIServer/switcherAPIServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/switcherAPIServer/README.md -------------------------------------------------------------------------------- /userChainAPIServer/switcherAPIServer/Zookeeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/switcherAPIServer/Zookeeper.go -------------------------------------------------------------------------------- /userChainAPIServer/switcherAPIServer/config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/userChainAPIServer/switcherAPIServer/config.default.json -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/appengine.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/auth.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/buffer.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/collations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/collations.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/connection.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/const.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/driver.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/dsn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/dsn.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/errors.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/fields.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/infile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/infile.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/packets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/packets.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/result.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/rows.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/statement.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/transaction.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/go-sql-driver/mysql/utils.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/README.md -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/auth.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/ctxoptions_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/ctxoptions_unix.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/ctxoptions_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/ctxoptions_windows.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/dummy.c: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | You need CGO_ENABLED=1 to build this package 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/polling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/polling.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/reactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/reactor.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/socketget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/socketget.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/socketget_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/socketget_unix.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/socketget_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/socketget_windows.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/socketset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/socketset.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/utils.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/zmq4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/zmq4.go -------------------------------------------------------------------------------- /vendor/github.com/pebbe/zmq4/zmq4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/pebbe/zmq4/zmq4.h -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/zk/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/zk/conn.go -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/zk/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/zk/constants.go -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/zk/dnshostprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/zk/dnshostprovider.go -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/zk/flw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/zk/flw.go -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/zk/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/zk/lock.go -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/zk/server_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/zk/server_help.go -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/zk/server_java.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/zk/server_java.go -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/zk/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/zk/structs.go -------------------------------------------------------------------------------- /vendor/github.com/samuel/go-zookeeper/zk/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/samuel/go-zookeeper/zk/util.go -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/Makefile -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/README.md -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.3 2 | -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/bitset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/bitset.go -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/popcnt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/popcnt.go -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/popcnt_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/popcnt_19.go -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/popcnt_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/popcnt_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/popcnt_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/popcnt_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/popcnt_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/popcnt_generic.go -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/trailing_zeros_18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/trailing_zeros_18.go -------------------------------------------------------------------------------- /vendor/github.com/willf/bitset/trailing_zeros_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/github.com/willf/bitset/trailing_zeros_19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/google.golang.org/appengine/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cloudsql/cloudsql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/google.golang.org/appengine/cloudsql/cloudsql.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cloudsql/cloudsql_classic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/google.golang.org/appengine/cloudsql/cloudsql_classic.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cloudsql/cloudsql_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/google.golang.org/appengine/cloudsql/cloudsql_vm.go -------------------------------------------------------------------------------- /vendor/merkle-tree-and-bitcoin/hash/byte32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/merkle-tree-and-bitcoin/hash/byte32.go -------------------------------------------------------------------------------- /vendor/merkle-tree-and-bitcoin/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/merkle-tree-and-bitcoin/hash/hash.go -------------------------------------------------------------------------------- /vendor/merkle-tree-and-bitcoin/hash/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/merkle-tree-and-bitcoin/hash/hash_test.go -------------------------------------------------------------------------------- /vendor/merkle-tree-and-bitcoin/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/merkle-tree-and-bitcoin/licence.txt -------------------------------------------------------------------------------- /vendor/merkle-tree-and-bitcoin/merkle/merkle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/merkle-tree-and-bitcoin/merkle/merkle.go -------------------------------------------------------------------------------- /vendor/merkle-tree-and-bitcoin/merkle/merkle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/merkle-tree-and-bitcoin/merkle/merkle_test.go -------------------------------------------------------------------------------- /vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btccom/btcpool-go-modules-ABANDONED/HEAD/vendor/vendor.json --------------------------------------------------------------------------------