mirror of
https://github.com/benjamin-wilson/public-pool.git
synced 2025-03-31 16:09:02 +02:00
tweaks
This commit is contained in:
parent
06e86953b6
commit
cf3f414475
@ -322,7 +322,7 @@ export class StratumV1Client extends EasyUnsubscribe {
|
||||
|
||||
await this.promiseSocket.write(job.response());
|
||||
|
||||
console.log(`Sent new job to ${this.extraNonce}. (clearJobs: ${clearJobs}, fee?: ${!noFee})`)
|
||||
console.log(`Sent new job to ${this.clientAuthorization.worker}.${this.extraNonce}. (clearJobs: ${clearJobs}, fee?: ${!noFee})`)
|
||||
|
||||
}
|
||||
|
||||
|
@ -60,10 +60,12 @@ export class BitcoinRpcService {
|
||||
public async SUBMIT_BLOCK(hexdata: string): Promise<string> {
|
||||
let response: string = 'unknown';
|
||||
try {
|
||||
await this.client.submitblock({
|
||||
response = await this.client.submitblock({
|
||||
hexdata
|
||||
});
|
||||
response = 'SUCCESS!';
|
||||
if (response == null) {
|
||||
response = 'SUCCESS!';
|
||||
}
|
||||
console.log(`BLOCK SUBMISSION RESPONSE: ${response}`);
|
||||
console.log(hexdata);
|
||||
console.log(JSON.stringify(response));
|
||||
|
Loading…
x
Reference in New Issue
Block a user