Guys, i'm not a techie. I need help. I'm getting the following error:
D:\pocminer_v1>C:\Windows\SysWOW64\java -Xmx250m -cp pocminer.jar;lib/*;lib/akka
/*;lib/jetty/* pocminer.POCMiner generate *Secret* 0 800000 500 7
Exception in thread "main" java.lang.NumberFormatException: For input string: "*
84"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.math.BigInteger.<init>(Unknown Source)
at java.math.BigInteger.<init>(Unknown Source)
at nxt.util.Convert.parseUnsignedLong(Convert.java:58)
at pocminer.POCMiner.main(POCMiner.java:42)
D:\pocminer_v1>pause
Press any key to continue . . .
Any help would be greatly appreciated ( i purposely put "secret" as my number).
Don't surround your password/secret with * symbols. Java is trying to run something along the lines of:
Long.parseLong(args[1]);
And this only accepts characters 0,1,2,3,4,5,6,7,8,and 9. No symbols.
