You're missing the GotWorkURI stuff.
You saw README, right?
yes , i saw
README:
"Eloipool supports merged mining using the setworkaux/gotwork RPC interface."
and in config.py
# URI to send gotwork with info for every share submission
#GotWorkURI = ''
and thats ALL...
SO
finall configuration
mining proxy command
python merged-mining-proxy -w 8330 -p http://ssecreteloipool:222@127.0.0.1:9947/ -x http://namecoinrpc:manecoinrpcpass@localhost:9377/
eloipool config.py
# 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
rpcuser=namecoinrpc
rpcpassword=manecoinrpcpass
rpcport=9377
and user miner program connect to 9947
is it ok ?