Skip to content

Commit 9a796e4

Browse files
committed
hotfix part 2
1 parent 0cdbf37 commit 9a796e4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • arionum-miner/src/main/java/com/programmerdan/arionum/arionum_miner

arionum-miner/src/main/java/com/programmerdan/arionum/arionum_miner/Miner.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ public void run() {
11331133

11341134
// argon, just the hash bit since params are universal
11351135
data.append(URLEncoder.encode("argon", "UTF-8")).append("=")
1136-
.append(URLEncoder.encode(argon.substring(31), "UTF-8")).append("&");
1136+
.append(URLEncoder.encode(argon.substring(30), "UTF-8")).append("&");
11371137
// nonce
11381138
data.append(URLEncoder.encode("nonce", "UTF-8")).append("=")
11391139
.append(URLEncoder.encode(nonce, "UTF-8")).append("&");
@@ -1152,9 +1152,9 @@ public void run() {
11521152
coPrint.updateLabel().a(Attribute.LIGHT).p("Submitting to ").textData().fs(node).p(" ")
11531153
.updateLabel().a(Attribute.LIGHT).p(" a ").dlData().p(submitDL)
11541154
.updateLabel().a(Attribute.LIGHT).ln(" DL nonce.").p(" nonce: ").textData().p(nonce)
1155-
.updateLabel().a(Attribute.LIGHT).p(" argon: ").textData().ln(argon.substring(31)).clr();
1155+
.updateLabel().a(Attribute.LIGHT).p(" argon: ").textData().ln(argon.substring(30)).clr();
11561156
/*System.out.println("Submitting to " + node + " a " + submitDL + " DL nonce. \n nonce: " + nonce
1157-
+ " argon: " + argon.substring(31));*/
1157+
+ " argon: " + argon.substring(30));*/
11581158

11591159
out.flush();
11601160
out.close();

0 commit comments

Comments
 (0)