Post
Topic
Board Mining software (miners)
Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy
by
tomaszsz
on 08/05/2013, 10:13:55 UTC
You're missing the GotWorkURI stuff.

You saw README, right?

yes , i saw

README:
Quote
"Eloipool supports merged mining using the setworkaux/gotwork RPC interface."

and in config.py

Quote
# URI to send gotwork with info for every share submission
#GotWorkURI = ''
and thats ALL...


 

SO
finall configuration

Quote
mining proxy command

Code:
python merged-mining-proxy  -w 8330 -p http://ssecreteloipool:222@127.0.0.1:9947/ -x http://namecoinrpc:manecoinrpcpass@localhost:9377/

eloipool config.py


Code:
# Secret username allowed to use setworkaux
SecretUser = "ssecreteloipool"

# Addresses to listen on for JSON-RPC GBT/getwork server
JSONRPCAddresses = (
        ('', 9947),
)

GotWorkURI = "http://mergedproxyuser:mergedproxypass@127.0.0.1:8330/"





namecoind config

Code:
rpcuser=namecoinrpc
rpcpassword=manecoinrpcpass
 
 
 rpcport=9377



Code:
and user miner program connect to 9947



is it ok ?