diff --git a/packages/cosmwasm/src/cosmwasmclient.searchtx.spec.ts b/packages/cosmwasm/src/cosmwasmclient.searchtx.spec.ts index 23115b8e..03f2664a 100644 --- a/packages/cosmwasm/src/cosmwasmclient.searchtx.spec.ts +++ b/packages/cosmwasm/src/cosmwasmclient.searchtx.spec.ts @@ -59,7 +59,7 @@ describe("CosmWasmClient.searchTx", () => { amount: "1234567", }; const result = await client.sendTokens(recipient, [transferAmount]); - await sleep(50); // wait until tx is indexed + await sleep(75); // wait until tx is indexed const txDetails = await new RestClient(wasmd.endpoint).txById(result.transactionHash); sendSuccessful = { sender: alice.address0, @@ -137,7 +137,7 @@ describe("CosmWasmClient.searchTx", () => { }, }; const result = await client.execute(hashInstance, msg); - await sleep(50); // wait until tx is indexed + await sleep(75); // wait until tx is indexed const txDetails = await new RestClient(wasmd.endpoint).txById(result.transactionHash); postedExecute = { sender: alice.address0, diff --git a/packages/cosmwasm/src/restclient.spec.ts b/packages/cosmwasm/src/restclient.spec.ts index 13e16441..ad4d3799 100644 --- a/packages/cosmwasm/src/restclient.spec.ts +++ b/packages/cosmwasm/src/restclient.spec.ts @@ -418,7 +418,7 @@ describe("RestClient", () => { }; } - await sleep(50); // wait until transactions are indexed + await sleep(75); // wait until transactions are indexed } }); @@ -499,7 +499,7 @@ describe("RestClient", () => { ]; const result = await client.sendTokens(recipient, transferAmount); - await sleep(50); // wait until tx is indexed + await sleep(75); // wait until tx is indexed const txDetails = await new RestClient(wasmd.endpoint).txById(result.transactionHash); posted = { sender: alice.address0, diff --git a/packages/faucet/src/faucet.ts b/packages/faucet/src/faucet.ts index 531f6437..9fe0655e 100644 --- a/packages/faucet/src/faucet.ts +++ b/packages/faucet/src/faucet.ts @@ -158,7 +158,7 @@ export class Faucet { for (const job of jobs) { if (this.logging) logSendJob(job, this.tokenConfig); await this.send(job); - await sleep(50); + await sleep(75); } if (this.logging) { diff --git a/packages/sdk38/src/cosmosclient.searchtx.spec.ts b/packages/sdk38/src/cosmosclient.searchtx.spec.ts index 3fd04d9e..c33e9247 100644 --- a/packages/sdk38/src/cosmosclient.searchtx.spec.ts +++ b/packages/sdk38/src/cosmosclient.searchtx.spec.ts @@ -51,7 +51,7 @@ describe("CosmosClient.searchTx", () => { amount: "1234567", }; const result = await client.sendTokens(recipient, [transferAmount]); - await sleep(50); // wait until tx is indexed + await sleep(75); // wait until tx is indexed const txDetails = await new RestClient(wasmd.endpoint).txById(result.transactionHash); sendSuccessful = { sender: faucet.address, diff --git a/packages/sdk38/src/restclient.spec.ts b/packages/sdk38/src/restclient.spec.ts index 7dc391a4..ef0fd9d5 100644 --- a/packages/sdk38/src/restclient.spec.ts +++ b/packages/sdk38/src/restclient.spec.ts @@ -290,7 +290,7 @@ describe("RestClient", () => { }; } - await sleep(50); // wait until transactions are indexed + await sleep(75); // wait until transactions are indexed } }); @@ -371,7 +371,7 @@ describe("RestClient", () => { ]; const result = await client.sendTokens(recipient, transferAmount); - await sleep(50); // wait until tx is indexed + await sleep(75); // wait until tx is indexed const txDetails = await new RestClient(wasmd.endpoint).txById(result.transactionHash); posted = { sender: faucet.address,