Has any one mined UBQ with this?
Using one of my rigs that's been mining ZEC and ETH nonstop for the past month I attempted to mine it today and have been unable to connect to any server.
https://imgur.com/a/2NnlLhttps://imgur.com/a/2NnlLI was initially using V0019-1 but updated to the most recent version and the same problem persists.
So far I've tried all Is and EU servers listed with the same result.
My rig is back to mining ETH while posting this.
So the syntax in the code doesn't fit what the ubiqpool.io wants. So just go to your 3main file and edit the ETHMINER portion for UBQ coin with this:
screen -dmS miner $HCD -F [b]http://us.ubiqpool.io:8888[/b]/$UBQADDR --farm-recheck 200 -U
You don't need to edit the 3main file; you can just edit the 1bash file coin details like this :
UBQ_WORKER=$WORKERNAME
UBQ_ADDRESS="replace_with_your_UBIQ_address"
UBQ_POOL="http://eu.ubiqpool.io:8008"
UBQ_EXTENSION_ARGUMENTS=""
Its just the stratum bit the miner doesn't like (only if you are using ethminer/genoil).
Try this and let me know if you still see issues.
I tried making the changes you recommended with the same results.
I used both EU and us servers.
https://imgur.com/a/ZzpVyhere is my 1bash
UBQ_WORKER="Dhodge87(1)"
UBQ_ADDRESS="0x7e4ECCeEdebEb0748F16C9fb618b2a9f6Ba5234d"
UBQ_POOL="http://us.ubiqpool.io:8008"
UBQ_EXTENSION_ARGUMENTS=""
here is my 3main
if [ $COIN == "UBQ" ]
then
if [ $ETHMINER_or_GENOIL_or_CLAYMORE == "GENOIL" ]
then
HCD='/home/m1/eth/Genoil-U/ethminer'
UBQADDR="0x7e4ECCeEdebEb0748F16C9fb618b2a9f6Ba5234d/Dhodge87(1)"
if [ $DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT == "DOT" ]
then
UBQADDR="0x7e4ECCeEdebEb0748F16C9fb618b2a9f6Ba5234d.Dhodge87(1)"
fi
screen -dmS miner $HCD -S $UBQ_POOL -O $UBQADDR:x -SP 1 -U
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
BITCOIN="theGROUND"
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
if [ $ETHMINER_or_GENOIL_or_CLAYMORE == "ETHMINER" ]
then
HCD='/home/m1/eth/ethminer_12dev2/ethminer'
UBQADDR="0x7e4ECCeEdebEb0748F16C9fb618b2a9f6Ba5234d/Dhodge87(1)"
if [ $DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT == "DOT" ]
then
UBQADDR="0x7e4ECCeEdebEb0748F16C9fb618b2a9f6Ba5234d.Dhodge87(1)"
fi
screen -dmS miner $HCD -S $UBQ_POOL -O $UBQADDR:x -SP 1 -U
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
BITCOIN="theGROUND"
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
Sorry for missing this bit, try this, Just removed the 'http' bit from pool address.
Let me know what happened (whether it worked or didn't).