Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
leenoox
on 04/03/2018, 21:08:09 UTC

You have to escape + sign with \
Try:
Code:
ADDR="$ETN_ADDRESS\+$ETN_WORKER"

Didn´t work because it puts the "\" into the address like this
Code:
etnadress\+workername
and that fails because the pool is not expecting to see the "\" in there. It only expects to see the "+" expression in between the etnaddress and the workername.

Sorry, my bad. No need to escape + in this case. Any of these 4 examples should work:
Code:
ADDR=$ETN_ADDRESS+$ETN_WORKER
ADDR="$ETN_ADDRESS+$ETN_WORKER"
ADDR=$((ETN_ADDRESS))+$((ETN_WORKER))
eval ADDR="$ETN_ADDRESS+$ETN_WORKER"