patch-2 scrypt-og

this fixes the problem with blocks not submitting correctly to the daemon for aidencoin.
This commit is contained in:
Christopher Franko 2014-11-14 11:52:43 -05:00
parent d3e2e00b58
commit af52fe30c5

View File

@ -90,6 +90,12 @@ var JobManager = module.exports = function JobManager(options){
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':
if (options.coin.reward === 'POS') {
return function (d) {