Fix for groestl - was missing share multiplier

This commit is contained in:
Matt 2014-04-25 21:33:04 -06:00
parent 9722b04c65
commit 92cd1f7907

View File

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