ZPOOL LBRYCOIN:
COIN="ZPOOL_LBC"
1bash:
# ZPOOL uses your BTC_ADDRESS
ZPOOL_LBC_POOL="stratum+tcp://lbc.mine.zpool.ca:3334"
3main:
if [ $COIN == "ZPOOL_LBC" ]
then
HCD='/home/m1/SPccminer/ccminer'
ZPOOLADDR="$BTC_ADDRESS.$WORKERNAME"
ZPOOLPASS="$WORKERNAME,c=BTC"
screen -dmS miner $HCD -a lbry -o $ZPOOL_LBC_POOL -u $ZPOOLADDR -p $ZPOOLPASS
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
BITCOIN="theGROUND"
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
I have a question regarding this;
on ZPOOL site, it says
-o stratum+tcp://
.mine.zpool.ca: -u [-p c=,]We need to enter ALGO type, PORT related to algo, BTC Wallet Address and for the password it can be empty (I believe) and it can go like this right? '-p c=BTC'
It can be hard coded like this right?
screen -dmS miner $HCD -a lyra2v2 -o $ZPOOL_LYRA2V2_POOL -u $BTC_ADDRESS -p c=BTC
so that you only need to give the right pool embedded with right port? given we already have our BTC address?
but the above 'ZPOOL_LBC' has these:
ZPOOLADDR="$BTC_ADDRESS.$WORKERNAME"
ZPOOLPASS="$WORKERNAME,c=BTC"
&&
screen -dmS miner $HCD -a lbry -o $ZPOOL_LBC_POOL -u $ZPOOLADDR -p $ZPOOLPASS
Why can't we use it like this??
screen -dmS miner $HCD -a lbry -o $ZPOOL_LYRA2V2_POOL -u $BTC_ADDRESS -p c=BTC
Please correct me if I have missed something!?
It would be nice to implement unified zpool worker name into zpool password in the new 1bash and 3main
if use bitcoin for zpool
ZPOOLWORKER="$WORKERNAME,c=BTC"
Regarding this;
Its bit confusing, not sure if I'm missing something, why do we need worker name in the place of password? please correct me if I'm taking this completely wrong