Skip to content

Commit

Permalink
Fixing case sensitivity bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xcthulhu committed Mar 4, 2015
1 parent 615e17f commit 0115606
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions libethash-js/test.js
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env node
// test.js
// Tim Hughes <[email protected]>

Expand All @@ -7,7 +6,7 @@

var ethash = require('./ethash');
var util = require('./util');
var Keccak = require('./Keccak');
var Keccak = require('./keccak');

// sanity check hash functions
var src = util.stringToBytes("");
Expand Down Expand Up @@ -51,4 +50,4 @@ for (var i = 0; i < trials; ++i)
hash = hasher.hash(header, nonce);
}
console.log("Light client hashes averaged: " + (new Date().getTime() - startTime)/trials + "ms");
console.log("Hash = " + util.bytesToHexString(hash));
console.log("Hash = " + util.bytesToHexString(hash));

0 comments on commit 0115606

Please sign in to comment.