From 8942fa5b144692ab174d5f1a02fc97c4f1b824dc Mon Sep 17 00:00:00 2001 From: Yash Date: Wed, 1 Nov 2023 21:11:38 +0530 Subject: [PATCH] Fix grammar and spelling --- 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' }`; }