From f9bcac9fb795d60bbe6d1e863aa250d224202f52 Mon Sep 17 00:00:00 2001 From: Yash Date: Thu, 2 Nov 2023 15:27:34 +0530 Subject: [PATCH] Fix grammar and spelling (#6559) --- packages/web3-errors/src/errors/transaction_errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web3-errors/src/errors/transaction_errors.ts b/packages/web3-errors/src/errors/transaction_errors.ts index f8549a3bc57..69c56378724 100644 --- a/packages/web3-errors/src/errors/transaction_errors.ts +++ b/packages/web3-errors/src/errors/transaction_errors.ts @@ -496,7 +496,7 @@ export class TransactionSendTimeoutError extends BaseWeb3Error { } function transactionTimeoutHint(transactionHash?: Bytes) { - return `Please make sure your transaction was properly sent and there no pervious pending transaction for the same account. However, be aware that it might still be mined!\n\tTransaction Hash: ${ + return `Please make sure your transaction was properly sent and there are no previous pending transaction for the same account. However, be aware that it might still be mined!\n\tTransaction Hash: ${ transactionHash ? transactionHash.toString() : 'not available' }`; }