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' }`; }