Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

network difficulty and block difficulty too high for dogecoin #91

Open
nmdata575 opened this issue Jan 3, 2023 · 1 comment
Open

network difficulty and block difficulty too high for dogecoin #91

nmdata575 opened this issue Jan 3, 2023 · 1 comment

Comments

@nmdata575
Copy link

im wondering if you could point me in the right direction on how to adjust the network hash rate and block diff for dogecoin. they are both show 12 digits in length (showing 813786450424.9687) but as of right now they are only 6 digits, (ie; 8,205,000)
this is making impossible for the miners to get even one share with a difficulty in the pool config set at 2

@nmdata575
Copy link
Author

took me a little bit to find it but i adjust the hashing algo and can now get the diff up to 500. i will test this for a while but the miner is actually showing a best share now

// Scrypt Algorithm
'scrypt': {
multiplier: Math.pow(2, 16),
diff: parseInt('0x0000ffff00000000000000000000000000000000000000000000000000000000'),
hash: function(coinConfig){
const nValue = coinConfig.nValue || 1024;
const rValue = coinConfig.rValue || 1;
return function(data){
return hashing.scrypt.apply(this, [data, nValue, rValue]);

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant