@@ -358,6 +358,7 @@ export class EthereumChainService extends EthereumChainReader implements IVector
358
358
// in this data with the already-existing store record of the tx.
359
359
let responses : TransactionResponse [ ] = [ ] ;
360
360
let nonce : number | undefined ;
361
+ let nonceExpired : boolean = false ;
361
362
let receipt : TransactionReceipt | undefined ;
362
363
let gasPrice : BigNumber ;
363
364
@@ -456,6 +457,7 @@ export class EthereumChainService extends EthereumChainReader implements IVector
456
457
// Another ethers message that we could potentially be getting back.
457
458
error . message . includes ( "There is another transaction with same nonce in the queue." ) )
458
459
) {
460
+ nonceExpired = true ;
459
461
this . log . info (
460
462
{ method, methodId, channelAddress, reason, nonce, error : error . message } ,
461
463
"Nonce already used: proceeding to check for confirmation in previous transactions." ,
@@ -479,6 +481,23 @@ export class EthereumChainService extends EthereumChainReader implements IVector
479
481
} catch ( e ) {
480
482
// Check if the error was a confirmation timeout.
481
483
if ( e . message === ChainError . reasons . ConfirmationTimeout ) {
484
+ if ( nonceExpired ) {
485
+ const error = new ChainError ( ChainError . reasons . NonceExpired , {
486
+ methodId,
487
+ method,
488
+ } ) ;
489
+ await this . handleTxFail (
490
+ onchainTransactionId ,
491
+ method ,
492
+ methodId ,
493
+ channelAddress ,
494
+ reason ,
495
+ receipt ,
496
+ error ,
497
+ "Nonce expired and could not confirm tx" ,
498
+ ) ;
499
+ return Result . fail ( error ) ;
500
+ }
482
501
// Scale up gas by percentage as specified by GAS_BUMP_PERCENT.
483
502
// From ethers docs:
484
503
// Generally, the new gas price should be about 50% + 1 wei more, so if a gas price
0 commit comments