Skip to content
This repository was archived by the owner on Dec 27, 2022. It is now read-only.

Commit 49684b9

Browse files
authored
Merge pull request #655 from connext/nonce-expired
Handle event where nonce is expired and tx is not confirmed
2 parents 5d4c087 + 6aa12bf commit 49684b9

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

modules/contracts/src.ts/services/ethService.ts

+19
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,7 @@ export class EthereumChainService extends EthereumChainReader implements IVector
358358
// in this data with the already-existing store record of the tx.
359359
let responses: TransactionResponse[] = [];
360360
let nonce: number | undefined;
361+
let nonceExpired: boolean = false;
361362
let receipt: TransactionReceipt | undefined;
362363
let gasPrice: BigNumber;
363364

@@ -456,6 +457,7 @@ export class EthereumChainService extends EthereumChainReader implements IVector
456457
// Another ethers message that we could potentially be getting back.
457458
error.message.includes("There is another transaction with same nonce in the queue."))
458459
) {
460+
nonceExpired = true;
459461
this.log.info(
460462
{ method, methodId, channelAddress, reason, nonce, error: error.message },
461463
"Nonce already used: proceeding to check for confirmation in previous transactions.",
@@ -479,6 +481,23 @@ export class EthereumChainService extends EthereumChainReader implements IVector
479481
} catch (e) {
480482
// Check if the error was a confirmation timeout.
481483
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+
}
482501
// Scale up gas by percentage as specified by GAS_BUMP_PERCENT.
483502
// From ethers docs:
484503
// Generally, the new gas price should be about 50% + 1 wei more, so if a gas price

modules/types/src/chain.ts

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export class ChainError extends VectorError {
6767
TxReverted: "Transaction reverted on chain",
6868
MaxGasPriceReached: "Max gas price reached",
6969
ConfirmationTimeout: "Timed out waiting for confirmation.",
70+
NonceExpired: "Failed to confirm a tx whose nonce had expired.",
7071
};
7172

7273
// Errors you would see from trying to send a transaction, and

0 commit comments

Comments
 (0)