You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/relay/src/lib/services/ethService/transactionService/TransactionService.ts
-8Lines changed: 0 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -281,7 +281,6 @@ export class TransactionService implements ITransactionService {
281
281
transactionBuffer,
282
282
parsedTx,
283
283
networkGasPriceInWeiBars,
284
-
this.lockService,
285
284
lockSessionKey,
286
285
requestDetails,
287
286
);
@@ -296,7 +295,6 @@ export class TransactionService implements ITransactionService {
296
295
transactionBuffer,
297
296
parsedTx,
298
297
networkGasPriceInWeiBars,
299
-
this.lockService,
300
298
lockSessionKey,
301
299
requestDetails,
302
300
);
@@ -495,7 +493,6 @@ export class TransactionService implements ITransactionService {
495
493
* @param {Buffer} transactionBuffer - The raw transaction data as a buffer.
496
494
* @param {EthersTransaction} parsedTx - The parsed Ethereum transaction object.
497
495
* @param {number} networkGasPriceInWeiBars - The current network gas price in wei bars.
498
-
* @param {LockService} lockService - The service for managing locks.
499
496
* @param {string | null} lockSessionKey - The session key for the acquired lock, null if no lock was acquired.
500
497
* @param {RequestDetails} requestDetails - Details of the request for logging and tracking purposes.
501
498
* @returns {Promise<string | JsonRpcError>} A promise that resolves to the transaction hash if successful, or a JsonRpcError if an error occurs.
@@ -504,7 +501,6 @@ export class TransactionService implements ITransactionService {
504
501
transactionBuffer: Buffer,
505
502
parsedTx: EthersTransaction,
506
503
networkGasPriceInWeiBars: number,
507
-
lockService: LockService,
508
504
lockSessionKey: string|null,
509
505
requestDetails: RequestDetails,
510
506
): Promise<string|JsonRpcError>{
@@ -520,7 +516,6 @@ export class TransactionService implements ITransactionService {
520
516
transactionBuffer,
521
517
originalCallerAddress,
522
518
networkGasPriceInWeiBars,
523
-
lockService,
524
519
lockSessionKey,
525
520
requestDetails,
526
521
);
@@ -668,7 +663,6 @@ export class TransactionService implements ITransactionService {
668
663
* @param transactionBuffer The raw transaction buffer
669
664
* @param originalCallerAddress The address of the original caller
670
665
* @param networkGasPriceInWeiBars The current network gas price in wei bars
671
-
* @param lockService The service for managing locks
672
666
* @param lockSessionKey The session key for the acquired lock, null if no lock was acquired
673
667
* @param requestDetails The request details for logging and tracking
674
668
* @returns {Promise<{txSubmitted: boolean, submittedTransactionId: string, error: any}>} A promise that resolves to an object containing transaction submission details
@@ -677,7 +671,6 @@ export class TransactionService implements ITransactionService {
677
671
transactionBuffer: Buffer,
678
672
originalCallerAddress: string,
679
673
networkGasPriceInWeiBars: number,
680
-
lockService: LockService,
681
674
lockSessionKey: string|null,
682
675
requestDetails: RequestDetails,
683
676
): Promise<{
@@ -698,7 +691,6 @@ export class TransactionService implements ITransactionService {
0 commit comments