Skip to content

Commit

Permalink
Reassigning variables to themselves.
Browse files Browse the repository at this point in the history
This was fixed in LocalCrypto.sol, but not here.
  • Loading branch information
stonecoldpat committed Aug 23, 2017
1 parent 0305769 commit ff4b882
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions AnonymousVoting.sol
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ library ECCMath {
throw;
r = 1;
uint bit = 2 ** 255;
bit = bit;
assembly {
loop:
jumpi(end, iszero(bit))
Expand Down Expand Up @@ -362,6 +363,8 @@ library Secp256k1 {
jump(loop)
loop_end:
}

dwPtr = dwPtr;

// Pre calculation
uint[3][8] memory PREC; // P, 3P, 5P, 7P, 9P, 11P, 13P, 15P
Expand Down

0 comments on commit ff4b882

Please sign in to comment.