Skip to content

Commit 6bac2cd

Browse files
committed
chore: resolve comments
Signed-off-by: nikolay <[email protected]>
1 parent 5c89450 commit 6bac2cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/relay/src/lib/services/ethService/transactionService/TransactionService.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export class TransactionService implements ITransactionService {
185185

186186
// no tx found
187187
if (!syntheticLogs.length) {
188-
this.logger.trace(`no tx for ${hash}`);
188+
this.logger.trace(`no tx for %s`, hash);
189189
return null;
190190
}
191191

@@ -224,7 +224,7 @@ export class TransactionService implements ITransactionService {
224224
return await this.handleSyntheticTransactionReceipt(hash, requestDetails);
225225
} else {
226226
const receipt = await this.handleRegularTransactionReceipt(receiptResponse, requestDetails);
227-
this.logger.trace(`receipt for ${hash} found in block ${receipt.blockNumber}`);
227+
this.logger.trace(`receipt for %s found in block %s`, hash, receipt.blockNumber);
228228

229229
return receipt;
230230
}
@@ -421,7 +421,7 @@ export class TransactionService implements ITransactionService {
421421

422422
// no tx found
423423
if (!syntheticLogs.length) {
424-
this.logger.trace(`no receipt for ${hash}`);
424+
this.logger.trace(`no receipt for %s`, hash);
425425
return null;
426426
}
427427

0 commit comments

Comments
 (0)