Merge pull request #52 from bluecircle/keccak_hashrate

Keccak hash rate adjustment per piotrrojek
This commit is contained in:
Matthew Little 2014-04-09 10:04:36 -06:00
commit 1a8c008beb

View File

@ -98,7 +98,7 @@ var algos = module.exports = global.algos = {
},
keccak: {
shift: 24,
multiplier: Math.pow(2, 8),
multiplier: Math.pow(2, 24),
hash: function(){
return function(data){
return multiHashing.keccak(data);
@ -215,4 +215,4 @@ for (var algo in algos){
algos[algo].nonTruncatedDiff = nonTruncatedDiff;
algos[algo].diff = nonTruncatedDiff;
}
}
}