patch-2 scrypt-og
this fixes the problem with blocks not submitting correctly to the daemon for aidencoin.
This commit is contained in:
parent
d3e2e00b58
commit
af52fe30c5
@ -90,6 +90,12 @@ var JobManager = module.exports = function JobManager(options){
|
|||||||
return util.reverseBuffer(hashDigest.apply(this, arguments));
|
return util.reverseBuffer(hashDigest.apply(this, arguments));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
case 'scrypt-og':
|
||||||
|
if (options.coin.reward === 'POS') {
|
||||||
|
return function (d) {
|
||||||
|
return util.reverseBuffer(hashDigest.apply(this, arguments));
|
||||||
|
};
|
||||||
|
}
|
||||||
case 'scrypt-jane':
|
case 'scrypt-jane':
|
||||||
if (options.coin.reward === 'POS') {
|
if (options.coin.reward === 'POS') {
|
||||||
return function (d) {
|
return function (d) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user