dvandal / cryptonote-nodejs-pool

Mining pool for all CryptoNote based coins using Cryptonight, Cryptonight Light and Cryptonight Heavy algorithms
GNU General Public License v2.0
364 stars 610 forks source link

Internal Error #649

Closed OptimusBlue closed 3 years ago

OptimusBlue commented 3 years ago

Hi

The setup is for Conceal (CCX) but I get the following error when I start the pool:

[pool] (Thread 1) INTERNAL ERROR: found reserve offset in unexpected place (found at 126, expected at 127) [pool] (Thread 2) INTERNAL ERROR: found reserve offset in unexpected place (found at 126, expected at 127)

I am using the latest release.

berghemhack commented 3 years ago

Try to look around line 100 of pool.js in this zone:

let previousOffset = config.previousOffset || 7; let offset = config.offset || 3; config.daemonType = config.daemonType || 'default'; if (config.daemonType === 'bytecoin') { previousOffset = config.previousOffset || 2; offset = config.offset || 3; }