Merge pull request #1139 from disperze/main

Fix timout error msg
This commit is contained in:
Simon Warta
2022-05-20 15:00:02 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -269,7 +269,7 @@ export class CosmWasmClient {
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,
);
+1 -1
View File
@@ -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,
);