From 7f9623b2f829a7836a406a70a7eb94cb77b0b754 Mon Sep 17 00:00:00 2001 From: Jerry Brady Date: Wed, 9 Apr 2014 01:40:15 +0000 Subject: [PATCH] Keccak hash rate adjustment per piotrrojek --- lib/algoProperties.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/algoProperties.js b/lib/algoProperties.js index 6307fb2..719745b 100644 --- a/lib/algoProperties.js +++ b/lib/algoProperties.js @@ -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; } -} \ No newline at end of file +}