mirror of
https://github.com/benjamin-wilson/public-pool.git
synced 2025-03-19 14:21:42 +01:00
bug
This commit is contained in:
parent
b7d86e7730
commit
43340e14fa
@ -327,7 +327,7 @@ export class StratumV1Client extends EasyUnsubscribe {
|
||||
private async handleMiningSubmission(submission: MiningSubmitMessage) {
|
||||
|
||||
const job = this.stratumV1JobsService.getJobById(submission.jobId);
|
||||
const jobTemplate = this.stratumV1JobsService.getJobTemplateById(job.jobTemplateId);
|
||||
|
||||
// a miner may submit a job that doesn't exist anymore if it was removed by a new block notification
|
||||
if (job == null) {
|
||||
const err = new StratumErrorMessage(
|
||||
@ -338,6 +338,8 @@ export class StratumV1Client extends EasyUnsubscribe {
|
||||
await this.promiseSocket.write(err);
|
||||
return false;
|
||||
}
|
||||
const jobTemplate = this.stratumV1JobsService.getJobTemplateById(job.jobTemplateId);
|
||||
|
||||
const updatedJobBlock = job.copyAndUpdateBlock(
|
||||
jobTemplate,
|
||||
parseInt(submission.versionMask, 16),
|
||||
|
Loading…
x
Reference in New Issue
Block a user