Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
hoank101 committed Apr 23, 2024
1 parent d1b3485 commit 37e8ae5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions tests/interchaintest/ibc_transfer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ func TestCentauriPicassoIBCTransfer(t *testing.T) {

ctx := context.Background()

nv := 5 // Number of validators
nf := 3 // Number of full nodes
nv := 1 // Number of validators
nf := 1 // Number of full nodes

consensusOverrides := make(testutil.Toml)
blockTime := 2 // seconds, parachain is 12 second blocks, don't make relayer work harder than needed
blockTime := 1 // seconds, parachain is 12 second blocks, don't make relayer work harder than needed
blockT := (time.Duration(blockTime) * time.Second).String()
consensusOverrides["timeout_commit"] = blockT
consensusOverrides["timeout_propose"] = blockT
Expand Down Expand Up @@ -163,8 +163,8 @@ func TestCentauriPicassoIBCTransfer(t *testing.T) {
require.NoError(t, err)

// Ensure parachain has started (starts 1 session/epoch after relay chain)
err = testutil.WaitForBlocks(ctx, 1, composable)
require.NoError(t, err, "polkadot chain failed to make blocks")
//err = testutil.WaitForBlocks(ctx, 1, composable)
//require.NoError(t, err, "polkadot chain failed to make blocks")

// Fund users on both cosmos and parachain, mints Asset 1 for Alice
fundAmount := int64(12_333_000_000_000)
Expand Down
2 changes: 1 addition & 1 deletion tests/interchaintest/push_wasm_client_code_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

const (
heightDelta = uint64(20)
heightDelta = uint64(25)
votingPeriod = "20s"
maxDepositPeriod = "10s"
)
Expand Down

0 comments on commit 37e8ae5

Please sign in to comment.