Nice, but can someone set up a p2pool nearer to EU or US?
I'd be happy to contribute/partner/invest in a server, but I work offshore and maintenance is too complicated when I'm behind very tight proxies
How do I pass a second (failover) pool to minerd? it doesn't seem to like second arguments... Or maybe I"m just doing it wrong
On Linux:
#!/bin/sh
## Miner Failover Script
## Will continously try each pool until one responds, ordered by priority.
#GLOBAL
## Set options
RETRIES="3"
SECONDS="5"
MINERD="minerd"
#POOL1
## Set userpass information for first pool
USERPASS1="user:pass"
URL1="stratum+tcp://pool1:port"
#POOL2
## Set userpass information for second pool
USERPASS2="user.pass"
URL2="stratum+tcp://pool2:port"
while :
do
$MINERD -a X11 --retries=$RETRIES --retry-pause=$SECONDS --userpass=$USERPASS1 --url=$URL1
$MINERD -a X11 --retries=$RETRIES --retry-pause=$SECONDS --userpass=$USERPASS2 --url=$URL2
done
On Windows:
@ECHO OFF
:: Miner Failover Script
:: Will continously try each pool until one responds, ordered by priority.
:GLOBAL
:: Set options
SET RETRIES=3
SET SECONDS=5
SET MINERD=minerd-corei7-avx.exe
:POOL1
:: Set userpass information for first pool
SET USERPASS1=user:pass
SET URL1=stratum+tcp://pool1:port
:POOL2
:: Set userpass information for second pool
SET USERPASS2=user:pass
SET URL2=stratum+tcp://pool2:port
:CONNECT
:: Normal connect
%MINERD% -a X11 --retries=%RETRIES% --retry-pause=%SECONDS% --userpass=%USERPASS1% --url=%URL1%
%MINERD% -a X11 --retries=%RETRIES% --retry-pause=%SECONDS% --userpass=%USERPASS2% --url=%URL2%
GOTO CONNECT
:END