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
commit a7a266ad73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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,
);

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,
);