Fixed share multipliers for groestl and fugue
This commit is contained in:
parent
c7bf05107f
commit
89e9f47e47
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user