From 79518b7d3aa00dbe21cce8bdcf17e3c0b467eb3c Mon Sep 17 00:00:00 2001 From: frandlyn26 <91971276+frandlyn26@users.noreply.github.com> Date: Wed, 12 Jan 2022 08:17:34 -0600 Subject: [PATCH] Update pool.js change required from turtlecoin-multi-hashing to turtleoin-crypto --- lib/pool.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pool.js b/lib/pool.js index 4f1a97b..ba1d057 100644 --- a/lib/pool.js +++ b/lib/pool.js @@ -19,7 +19,7 @@ let utils = require('./utils.js'); config.hashingUtil = config.hashingUtil || false; let cnHashing = require('cryptonight-hashing'); if (config.hashingUtil) { - cnHashing = require('turtlecoin-multi-hashing'); + cnHashing = require('turtlecoin-crypto'); } // Set nonce pattern - must exactly be 8 hex chars let noncePattern = new RegExp("^[0-9A-Fa-f]{8}$");