##// END OF EJS Templates
Fixed bug in PoW in Chrome. Recompiled translations after merging 2 different features (BB-83)
neko259 -
r1431:ead4e49c default
parent child Browse files
Show More
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
@@ -8,9 +8,9 b' function computeHash(iteration, guess, t'
8 guess = hash.substring(0, POW_HASH_LENGTH);
8 guess = hash.substring(0, POW_HASH_LENGTH);
9
9
10 if (guess <= target) {
10 if (guess <= target) {
11 console.log("Iteration: ", iteration);
11 //console.log("Iteration: ", iteration);
12 console.log("Guess: ", guess);
12 //console.log("Guess: ", guess);
13 console.log("Target: ", target);
13 //console.log("Target: ", target);
14
14
15 var data = {
15 var data = {
16 iteration: iteration,
16 iteration: iteration,
General Comments 0
You need to be logged in to leave comments. Login now