Explorar el Código

bug minervaluesforwork

Bug when not value on target_pow
PascalCoin hace 7 años
padre
commit
d103ef23c4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/core/UPoolMining.pas

+ 1 - 1
src/core/UPoolMining.pas

@@ -1195,7 +1195,7 @@ begin
         end;
       end;
     end else begin
-      if (FMinerValuesForWork.target<CT_MinCompactTarget) then begin
+      if (FMinerValuesForWork.target>=CT_MinCompactTarget) then begin
         // target_pow has no value... assigning target!
         FMinerValuesForWork.target_pow:=TPascalCoinProtocol.TargetFromCompact(FMinerValuesForWork.target);
       end else begin