Somethings not right with your pool. When I type in my address to check i get
[object Object]/sec
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
[object Object]/sec
#!/bin/bash
coin=QCN
pool=qcn.cryptity.com:7779
wallet=1234blahblah4321
minerpath="/home/ubuntu/minerd"
minerdcmd="minerd -a cryptonight -o $pool -u $wallet -p x -q"
maxboos=2
looptimer=15
while true; do
running=`ps -C minerd | grep minerd | wc -l`
maxnum=`cat /proc/cpuinfo | grep processor | wc -l`
# check minerd is running
if [ $running -lt 1 ]; then
echo `date +%H:%M:%S` - $0 - No minerd found: starting miner on $coin @ $pool
$minerpath/$minerdcmd 2>> $minerpath/minerd.log &
# sanity check to make sure no more than one is running
elif [ $running -gt 1 ]; then
echo `date +%H:%M:%S` - Too many minerd found: killing and restarting
killall minerd && sleep 5
$minerpath/$minerdcmd 2>> $minerpath/minerd.log &
fi
# check for boooo in the minerd output
boos=`grep 'boooo' minerd.log | wc -l`
#if there's fewer than allowed, just say so
if [ $boos -lt $maxboos ]; then
echo `date +%H:%M:%S` - Found $boos / $maxboos boos
sleep $looptimer
else
#otherwise, there's too many, so shoot the miner
rm minerd.log
echo `date +%H:%M:%S` - FOUND TOO MANY BOOS - $boos / $maxboos
#restart minerd
killall minerd && sleep 5
echo `date +%H:%M:%S` - Restarting miner on $coin @ $pool
$minerpath/$minerdcmd 2>> $minerpath/minerd.log &
fi
done;
"longPolling": {
"enabled": false,
"timeout": 8500
},
"longPolling": {
"enabled": false,
"timeout": 8500
},