Skip to content

Commit

Permalink
temporal fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hackmod committed Dec 20, 2018
1 parent 5bfe654 commit 73233d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libprogpow/ProgPow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ std::string ProgPow::math(std::string d, std::string a, std::string b, uint32_t
case 1: return d + " = " + a + " * " + b + ";\n";
case 2: return d + " = mul_hi(" + a + ", " + b + ");\n";
case 3: return d + " = min(" + a + ", " + b + ");\n";
case 4: return d + " = ROTL32(" + a + ", " + b + ");\n";
case 5: return d + " = ROTR32(" + a + ", " + b + ");\n";
case 4: return d + " = ROTL32(" + a + ", " + b + " % 32);\n";
case 5: return d + " = ROTR32(" + a + ", " + b + " % 32);\n";
case 6: return d + " = " + a + " & " + b + ";\n";
case 7: return d + " = " + a + " | " + b + ";\n";
case 8: return d + " = " + a + " ^ " + b + ";\n";
Expand Down

0 comments on commit 73233d3

Please sign in to comment.