File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/relay/src/lib/services/ethService/transactionService Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments