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 611 forks source link

MASARI ALGO Not Showing Well at Example Webpage #510

Closed Sevilla404 closed 4 years ago

Sevilla404 commented 4 years ago

The example config.json for masari its configurated for use cnVariant 9, but in the "getting_started" example webpage its not exist that option to show the real Algo running:

if (cnVariant === 1) { algorithm = 'Cryptonight (Monero v7)'; xmrstakAlgo = 'cryptonight_v7'; } else if (cnVariant === 3) { algorithm = 'Cryptonight (Stellite v7)'; xmrstakAlgo = 'cryptonight_v7_stellite'; } else if (cnVariant === 4) { algorithm = 'Cryptonight Fast (Masari)'; xmrstakAlgo = 'cryptonight_masari';

        } else {
            algorithm = 'Cryptonight (Original)';
            xmrstakAlgo = 'cryptonight';
        }
    }

Need to add cnVariant 9 or change cnVariant from 4 to 9

   } else if (cnVariant === 9) {
            algorithm = 'Cryptonight Fast (Masari)';
            xmrstakAlgo = 'cryptonight_v8_half';
hypeboard commented 4 years ago

make a pull request

On Thu, Sep 26, 2019 at 12:11 PM Sevilla404 notifications@github.com wrote:

The example config.json for masari its configurated for use cnVariant 9, but in the "getting_started" example webpage its not exist that option to show the real Algo running:

if (cnVariant === 1) { algorithm = 'Cryptonight (Monero v7)'; xmrstakAlgo = 'cryptonight_v7'; } else if (cnVariant === 3) { algorithm = 'Cryptonight (Stellite v7)'; xmrstakAlgo = 'cryptonight_v7_stellite'; } else if (cnVariant === 4) { algorithm = 'Cryptonight Fast (Masari)'; xmrstakAlgo = 'cryptonight_masari';

    } else {
        algorithm = 'Cryptonight (Original)';
        xmrstakAlgo = 'cryptonight';
    }
}

Need to add cnVariant 9 or change cnVariant from 4 to 9

} else if (cnVariant === 9) { algorithm = 'Cryptonight Fast (Masari)'; xmrstakAlgo = 'cryptonight_v8_half';

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/dvandal/cryptonote-nodejs-pool/issues/510?email_source=notifications&email_token=AI5XXXNZGOSQ54JOA4A7GZLQLTUNZA5CNFSM4I24XWIKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HN6J7DA, or mute the thread https://github.com/notifications/unsubscribe-auth/AI5XXXLTMP2YRTERRJQGEZDQLTUNZANCNFSM4I24XWIA .

C-Prime90 commented 4 years ago

I am adding a handful of missing algo info in coming PR.

C-Prime90 commented 4 years ago

Addressed in #521