Fixed share multipliers for groestl and fugue

This commit is contained in:
Matt 2014-04-26 00:55:45 -06:00
parent c7bf05107f
commit 89e9f47e47

View File

@ -105,7 +105,7 @@ var algos = module.exports = global.algos = {
}
},
groestl: {
multiplier: Math.pow(2, 16),
multiplier: Math.pow(2, 8),
hash: function(){
return function(){
return multiHashing.groestl.apply(this, arguments);
@ -113,7 +113,7 @@ var algos = module.exports = global.algos = {
}
},
fugue: {
multiplier: Math.pow(2, 16),
multiplier: Math.pow(2, 8),
hash: function(){
return function(){
return multiHashing.fugue.apply(this, arguments);