From 89e9f47e47e941e5ee77005e531af2df1234ee06 Mon Sep 17 00:00:00 2001 From: Matt Date: Sat, 26 Apr 2014 00:55:45 -0600 Subject: [PATCH] Fixed share multipliers for groestl and fugue --- lib/algoProperties.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/algoProperties.js b/lib/algoProperties.js index 90a7fe3..1d25686 100644 --- a/lib/algoProperties.js +++ b/lib/algoProperties.js @@ -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);