wificoin WFCPOOLコンパイルおよび導入チュートリアル

1647 ワード

WFCPOOLコンパイルおよび導入チュートリアル
コンパイルする前に、次のチュートリアルでwificoinノードを構築し、ノードを正常に動作させます.https://talkblock.org/article/117
1 wfcpoolソースコードをダウンロードしてコンパイルする
  sudo apt-get install build-essential yasm libpq-dev libgsl-dev
  git clone [https://github.com/wificoin-project/wfcpool.git](https://github.com/wificoin-project/wfcpool.git)
cd wfcpool/
./autogen.sh
./configure
./make

その後、srcディレクトリの下でckpoolの実行可能ファイルが生成されます.
2プロファイルcd src/gedit ckpoolを作成する.confは以下の内容を追加します
{
"btcd" :  [
    {
        "url" : "localhost:9665",
        "auth" : "test",
        "pass" : "admin",
        "notify" : true
    }
],
"serverurl" : "0.0.0.0:3336",
"btcaddress" : "whqBhEx5Y1dwDAPpXSCXU1YY6T9Mmizqad",//              
"btcsig" : "/mined by wfc team/",
"blockpoll" : 100,
"nonce1length" : 4,
"nonce2length" : 8,
"update_interval" : 30,
"mindiff" : 1,
"startdiff" : 982098,
"maxdiff" : 0,
"logdir" : "logs"
}

3鉱山を起動します./ckpool
[2018-04-02 20:48:24.758] ckpool generator starting
[2018-04-02 20:48:24.758] ckpool stratifier starting
[2018-04-02 20:48:24.758] ckpool connector starting
[2018-04-02 20:48:24.769] ckpool connector ready
[2018-04-02 20:48:24.777] ckpool generator ready
[2018-04-02 20:48:24.777] Connected to bitcoind: localhost:9665
[2018-04-02 20:48:24.779] ckpool stratifier ready
[2018-04-02 20:48:39.790] - 0.00H/s  0.0 SPS  0 users  0 workers

以上の出力を見て、鉱山が正常に動作していることを証明しません.