Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DRK] DarkCoin | Anonymous (alpha) | KGW | No Premine | ASIC Resistant
by
HammerHedd
on 22/02/2014, 01:23:01 UTC
NET HASH @ 6GH/s. It is amazing !!!  Wink

With pool.darkcoin.io down?

Still? Please use p2p from now on so you aren't at the mercy of these pool operators.

Connected to p2pool --> http://112.175.123.82:8372/static/

now all i get are these msg from the miner:
Pool 0 difficulty changed to 0.XX
stratum from pool 0 requested work restart


What should I do??

Nope, that's normal at p2pool.

https://en.bitcoin.it/wiki/P2Pool#Frequently_Asked_Questions



One more p2pool. peer.
http://112.175.123.82:8372/static/
http://112.175.123.94:8372/static/



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:
Code:
#!/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:
Code:
@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

+1 evil genius points for you!

Thanks for the two versions. Smiley