From 83f05d3d8f62d88191620886cd804621834ab5e6 Mon Sep 17 00:00:00 2001 From: Facundo Medica Date: Tue, 4 Jul 2023 20:02:14 +0200 Subject: [PATCH] increase ibc delay even more --- tests/e2e/setup/utils.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/e2e/setup/utils.go b/tests/e2e/setup/utils.go index 954089953a..3fb0d086e1 100644 --- a/tests/e2e/setup/utils.go +++ b/tests/e2e/setup/utils.go @@ -10,13 +10,14 @@ import ( "strings" "time" + "github.com/gogo/protobuf/proto" + "github.com/ory/dockertest/v3/docker" + "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/codec/unknownproto" sdk "github.com/cosmos/cosmos-sdk/types" sdktx "github.com/cosmos/cosmos-sdk/types/tx" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/gogo/protobuf/proto" - "github.com/ory/dockertest/v3/docker" oracletypes "github.com/umee-network/umee/v5/x/oracle/types" "github.com/umee-network/umee/v5/x/uibc" @@ -79,8 +80,8 @@ func (s *E2ETestSuite) SendIBC(srcChainID, dstChainID, recipient string, token s "failed to send IBC tokens; stdout: %s, stderr: %s", outBuf.String(), errBuf.String(), ) s.T().Log("successfully sent IBC tokens") - s.T().Log("Waiting for 4 seconds to make sure trasaction is processed or include in the block") - time.Sleep(time.Second * 4) + s.T().Log("Waiting for 6 seconds to make sure trasaction is processed or include in the block") + time.Sleep(time.Second * 6) } // QueryREST make http query to grpc-web endpoint and tries to decode valPtr using proto-JSON