Post
Topic
Board Mining (Altcoins)
Re: [VOT] Temp Pool Status
by
megacrypto
on 14/09/2017, 10:19:09 UTC
Thx for your effort to get it sorted out.  Smiley
For me: t1gJTLWuXL5caoo5ZFYY7zTFkjbEiuQt9V4
i allready got some coins partially ... so i believe the other part will come as well.
Thx again and hoping to see this coin rise some day Smiley

btw. i tried to setup a pool on my own but i am not sure how to setup the json file as their is no example for votecoin.
Any pointers?

which json file? the coin's in znomp? if so, this is what i did:

- in "pool_configs" i added the following

Code:
nano votecoin.json

and then copied & modified the config from other coins ... this is my actual votecoin.json
Code:
{
    "enabled":true,
    "coin": "votecoin.json",

    "address": "t1h7Dut3kXTDaPUhqM4v3mm7rbreL7FE5ry",
    "zAddress": "zcBBhYdasCiBpkimmTZcCjH7df5aVCz7oNQoPv5We65MKwcg6Djy8mfr39Mh9eedvFBMnZ3dW6QRLLqmXBHartjtmGJTc6G",
    "tAddress": "t1cdge5th3DtrixsCtwZxUH79xB443hok1o",
    "walletInterval": 20,
    "rewardRecipients": {
    },

    "tlsOptions": {
        "enabled": false,
        "serverKey":"",
        "serverCert":"",
        "ca":""
    },

    "paymentProcessing": {
"minConf": 10,
        "enabled": true,
        "paymentMode": "prop",
        "paymentInterval": 300,
        "minimumPayment": 0.1,
        "maxBlocksPerPayment": 3,
        "daemon": {
            "host": "127.0.0.1",
            "port": 19833,
            "user": "myRPCuser",
            "password": "myRPCpass"
        }
    },

    "ports": {
        "19834": {
            "tls":false,
            "diff": 0.05,
            "varDiff": {
                "minDiff": 0.04,
                "maxDiff": 16,
                "targetTime": 15,
                "retargetTime": 60,
                "variancePercent": 30
            }
        }
    },

    "daemons": [
        {
            "host": "127.0.0.1",
            "port": 19833,
            "user": "myRPCuser",
            "password": "myRPCpass"
        }
    ],

    "p2p": {
        "enabled": false,
        "host": "127.0.0.1",
        "port": 19333,
        "disableTransactions": true
    },

    "mposMode": {
        "enabled": false,
        "host": "127.0.0.1",
        "port": 3306,
        "user": "me",
        "password": "mypass",
        "database": "kmd",
        "checkPassword": true,
        "autoCreateWorker": false
    }

}


and in the coins folder i just copied the zdash.json and renamed it to votecoin.json and edited as follows:

Code:
{
    "name": "votecoin",
    "symbol": "vot",
    "algorithm": "equihash",
    "requireShielding": true,
    "txfee": 0.0004
}


hope this helps Smiley