Skip to content

Commit c7df016

Browse files
author
Ricky Cheung
committed
avr: Require 3500 H/s in hash test for starting difficulty of DUE
Boards like the BBC Microbit could only do ~2000 H/s at difficulty of 128, but it is assigned a difficulty of 512, which results in immediate shares rejection. As indicated by the naming, "ARM" as starting difficulty is available, so use that instead. Signed-off-by: Ricky Cheung <[email protected]>
1 parent 7963ffa commit c7df016

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AVR_Miner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ def mine_avr(com, threadid, fastest_pool, thread_rigid):
11061106
break
11071107

11081108
start_diff = "AVR"
1109-
if hashrate_test > 1000:
1109+
if hashrate_test > 3500:
11101110
start_diff = "DUE"
11111111
elif hashrate_test > 550:
11121112
start_diff = "ARM"

0 commit comments

Comments
 (0)