Testter Ricova
Testter Ricova
// Support my work:
// BTC: 1N6j94GQYDyWBJ4rLnWtG3fFqEGj69bRAJ
// ETH & BNB: oriaxe.eth
// Buy me a coffee: https:/https://buymeacoffee.com/oriaxe
if (cluster.isMaster) {
// Master process logic here
} else {
// Worker process logic here
generate();
}
function generate() {
// Incrementing the count for the current worker
counts[cluster.worker.id] = (counts[cluster.worker.id] || 0) + 1;
// Saving the wallet and its private key (seed) to a file named 'match.txt'
fs.writeFileSync('./output/match.txt', successString, (err) => {
if (err) throw err;
});
// Exiting the process
process.exit();
}
}