Post
Topic
Board Mining (Altcoins)
Re: [GUIDE] Setup your own Ethereum mining pool.
by
McMCrypto
on 15/06/2018, 19:55:37 UTC
Hi

So i managed to get this up and running first time but i am confused about a few things and thought you could help ?

1: I assume the 1% fee goes to the wallet i setup in Geth ?

2: Under the Edit "open-ethereum-pool >>payouts >>unlocker.go  and change  [ var homesteadReward = math.MustParseBig256(“3000000000000000000”) ] with your coin block reward" - What should i set my coin block reward to?  How should i decide this?  

3: Is there a way to offer stratum mining?

Think this is most of the questions i have for now?

Thanks.

Hi, guys,  when  you  geth  step......

Code:
$ ./geth --rpc --rpcaddr 127.0.0.1 --rpcport 8545 --cache=1024

personal.newAccount()

Then you generate a Wallet Address.... this Address is for setting up in  .......  payouts  or  PoolFee (unlocker)   ?

Quote
"unlocker": {
      "enabled": true,
      "poolFee": 0.5,
    "poolFeeAddress": "0x9exxxxxxxxxxxxxxxxxxxxxxxxxx",
      "donate": true,
      "depth": 120,
      "immatureDepth": 20,
      "keepTxFees": false,
      "interval": "10m",
      "daemon": "http://127.0.0.1:8545",
      "timeout": "10s"
   },

"payouts": {
      "enabled": true,
      "requirePeers": 5,
      "interval": "10m",
      "daemon": "http://127.0.0.1:8545",
      "timeout": "10s",
      "address": "0x06xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",


Code:
** Edit open-ethereum-pool >>payouts >>unlocker.go  and change  [ var homesteadReward = math.MustParseBig256(“3000000000000000000”) ] with your coin block reward

This means payout at 3 Eths,  right ?

Thanks