From dfe1d7c7f36e7aac5096a3ae1c0193a2b7b82a45 Mon Sep 17 00:00:00 2001 From: Giancarlos Salas Date: Mon, 2 May 2022 16:50:50 -0500 Subject: [PATCH] Fix timeout error msg --- packages/stargate/src/stargateclient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/stargate/src/stargateclient.ts b/packages/stargate/src/stargateclient.ts index f97fe3c3..c9fda562 100644 --- a/packages/stargate/src/stargateclient.ts +++ b/packages/stargate/src/stargateclient.ts @@ -388,7 +388,7 @@ export class StargateClient { if (timedOut) { throw new TimeoutError( `Transaction with ID ${txId} was submitted but was not yet found on the chain. You might want to check later. There was a wait of ${ - timeoutMs / 10000 + timeoutMs / 1000 } seconds.`, txId, );