This commit is contained in:
Ben Wilson 2023-07-30 12:03:57 -04:00
parent 694af35937
commit ebe7f27a61

View File

@ -400,19 +400,19 @@ export class StratumV1Client extends EasyUnsubscribe {
await this.addressSettingsService.resetBestDifficultyAndShares();
}
}
// try {
// await this.statistics.addSubmission(this.entity, submissionHash, this.sessionDifficulty);
// await this.addressSettingsService.addShares(this.clientAuthorization.address, this.sessionDifficulty);
// } catch (e) {
// console.log(e);
// const err = new StratumErrorMessage(
// submission.id,
// eStratumErrorCode.DuplicateShare,
// 'Duplicate share').response();
// console.error(err);
// await this.promiseSocket.write(err);
// return false;
// }
try {
await this.statistics.addSubmission(this.entity, submissionHash, this.sessionDifficulty);
//await this.addressSettingsService.addShares(this.clientAuthorization.address, this.sessionDifficulty);
} catch (e) {
console.log(e);
const err = new StratumErrorMessage(
submission.id,
eStratumErrorCode.DuplicateShare,
'Duplicate share').response();
console.error(err);
await this.promiseSocket.write(err);
return false;
}
if (submissionDifficulty > this.entity.bestDifficulty) {
await this.clientService.updateBestDifficulty(this.extraNonceAndSessionId, submissionDifficulty);