13 gpu issue
#9
'$' denotes a variable name in the bash shell. If you provide the bare hash string without escaping it, bash thinks '$ethereum' is the name of a variable, whose value is null.

The '$' character absolutely must be present in the hash string; removing it will not work. You need to tell bash that the hash string is a literal value and not to expand what appear to be variables. You can accomplish this by enclosing the hash string in single quotes.

You can also simply place the hash string in a plain text file. But again, you must not alter the hash string, the '$' symbols must be intact.


Messages In This Thread
13 gpu issue - by qweasd21 - 01-18-2018, 06:22 PM
RE: 13 gpu issue - by Chick3nman - 01-18-2018, 06:26 PM
RE: 13 gpu issue - by qweasd21 - 01-18-2018, 06:33 PM
RE: 13 gpu issue - by Lars - 01-18-2018, 06:41 PM
RE: 13 gpu issue - by qweasd21 - 01-18-2018, 06:50 PM
RE: 13 gpu issue - by Chick3nman - 01-18-2018, 06:56 PM
RE: 13 gpu issue - by qweasd21 - 01-18-2018, 07:11 PM
RE: 13 gpu issue - by qweasd21 - 01-18-2018, 07:13 PM
RE: 13 gpu issue - by epixoip - 01-18-2018, 07:15 PM
RE: 13 gpu issue - by philsmd - 01-18-2018, 07:20 PM
RE: 13 gpu issue - by qweasd21 - 01-18-2018, 07:32 PM
RE: 13 gpu issue - by qweasd21 - 01-18-2018, 07:37 PM
RE: 13 gpu issue - by philsmd - 01-18-2018, 11:18 PM