Keccak hash rate adjustment per piotrrojek

This commit is contained in:
Jerry Brady 2014-04-09 01:40:15 +00:00
parent 91940045ca
commit 7f9623b2f8

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;
}
}
}