Skip to content

Commit

Permalink
[E2E Test] Sequencer Rotation happy flow with no sequencer coming and…
Browse files Browse the repository at this point in the history
… syncing over DA and P2P (#394)
  • Loading branch information
anhductn2001 authored Sep 24, 2024
1 parent d1f3ee5 commit 559cf44
Show file tree
Hide file tree
Showing 38 changed files with 893 additions and 168 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,12 @@ e2e-test-fullnode-sync-block-sync-evm: clean-e2e
e2e-test-fullnode-disconnect-block-sync-evm: clean-e2e
cd tests && go test -timeout=30m -race -v -run TestSync_BlockSync_fn_disconnect_EVM .

e2e-test-sequencer-rotation-noseq-da-evm: clean-e2e
cd tests && go test -timeout=30m -race -v -run Test_SeqRotation_NoSeq_DA_EVM .

e2e-test-sequencer-rotation-noseq-p2p-evm: clean-e2e
cd tests && go test -timeout=30m -race -v -run Test_SeqRotation_NoSeq_P2P_EVM .

# Executes IBC tests via rollup-e2e-testing
e2e-test-ibc-success-wasm: clean-e2e
cd tests && go test -timeout=45m -race -v -run TestIBCTransferSuccess_Wasm .
Expand Down
1 change: 1 addition & 0 deletions clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ rm -rf /tmp/dym*
rm -rf /tmp/sequencer*
rm -rf /tmp/celes*
rm -rf /tmp/gaia*
rm -rf /tmp/new_rollapp*
echo "Clean success!!"

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ replace (

require (
github.com/decentrio/e2e-testing-live v0.0.0-20240718080249-ee255229c869
github.com/decentrio/rollup-e2e-testing v0.0.0-20240919024619-0f39bd77d29b
github.com/decentrio/rollup-e2e-testing v0.0.0-20240923073446-c62503e5e95f
github.com/dymensionxyz/dymension/v3 v3.1.0-rc03.0.20240911123104-4782bc4e587f
github.com/dymensionxyz/dymint v1.2.0-rc01
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -770,8 +770,8 @@ github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c h1:pFUpOrbxDR
github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c/go.mod h1:6UhI8N9EjYm1c2odKpFpAYeR8dsBeM7PtzQhRgxRr9U=
github.com/decentrio/e2e-testing-live v0.0.0-20240718080249-ee255229c869 h1:qWpUYGOsrSC+1Vmd2TjhbsSpntvvx9PsX3AoeMunFxc=
github.com/decentrio/e2e-testing-live v0.0.0-20240718080249-ee255229c869/go.mod h1:HZNYnPwmSxkwTPjSD5yolauc1Vx1ZzKL4FFMxTq4H5Y=
github.com/decentrio/rollup-e2e-testing v0.0.0-20240919024619-0f39bd77d29b h1:nbWJnJo1ZDXqplqgQAkBJYIFE6+9eEfHeNFpMa46sZw=
github.com/decentrio/rollup-e2e-testing v0.0.0-20240919024619-0f39bd77d29b/go.mod h1:QmBrZgZplhtgHRWC0Z7LC7TDsKuC8sDyQvZyXXaqw/c=
github.com/decentrio/rollup-e2e-testing v0.0.0-20240923073446-c62503e5e95f h1:YH0RDGXosZHVaxFJ+Q4Kh0782yQq5ZcK5jQNN/RQUgU=
github.com/decentrio/rollup-e2e-testing v0.0.0-20240923073446-c62503e5e95f/go.mod h1:QmBrZgZplhtgHRWC0Z7LC7TDsKuC8sDyQvZyXXaqw/c=
github.com/deckarep/golang-set v1.8.0 h1:sk9/l/KqpunDwP7pSjUg0keiOOLEnOBHzykLrsPppp4=
github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo=
github.com/deckarep/golang-set/v2 v2.1.0 h1:g47V4Or+DUdzbs8FxCCmgb6VYd+ptPAngjM6dtGktsI=
Expand Down
16 changes: 8 additions & 8 deletions tests/admc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func TestADMC_Originates_HubtoRA_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -281,7 +281,7 @@ func TestADMC_Migrate_Empty_User_Memo_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -511,7 +511,7 @@ func TestADMC_Migrate_With_User_Memo_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -747,7 +747,7 @@ func TestADMC_Originates_HubtoRA_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -918,7 +918,7 @@ func TestADMC_Migrate_Empty_User_Memo_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1145,7 +1145,7 @@ func TestADMC_Migrate_With_User_Memo_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1406,7 +1406,7 @@ func TestADMC_MetaData_NotFound_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1607,7 +1607,7 @@ func TestADMC_MetaData_NotFound_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down
12 changes: 6 additions & 6 deletions tests/automated_denommetadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func TestADMC_Hub_to_RA_reserved_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -454,7 +454,7 @@ func TestADMC_Hub_to_RA_3rd_Party_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -746,7 +746,7 @@ func TestADMC_Hub_to_RA_reserved_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1066,7 +1066,7 @@ func TestADMC_Hub_to_RA_3rd_Party_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1316,7 +1316,7 @@ func TestADMC_Hub_to_RA_Migrate_Dym_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1515,7 +1515,7 @@ func TestADMC_Hub_to_RA_Migrate_Dym_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down
4 changes: 2 additions & 2 deletions tests/bridging_fee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func Test_Non_Rollappchain_Unaffected_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, gaia1, ibcPath)
Expand Down Expand Up @@ -307,7 +307,7 @@ func TestChangeBridgeFeeParam_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down
14 changes: 14 additions & 0 deletions tests/data/metadata_sequencer1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"moniker": "sequencer",
"details": "This is a description of the Rollapp.",
"p2p_seeds": ["seed1"],
"rpcs": ["https://rpc.wpd.evm.rollapp.noisnemyd.xyz:443", "https://rpc.wpd.wasm.rollapp.noisnemyd.xyz:443"],
"evm_rpcs": ["https://rpc.wpd.evm.evm.noisnemyd.xyz:443"],
"rest_api_urls": ["https://api.wpd.evm.rollapp.noisnemyd.xyz:443"],
"explorer_url": "explorer_url",
"genesis_urls": ["genesis"],
"contact_details":{},
"extra_data": [],
"snapshots": [],
"gas_price": "0"
}
4 changes: 2 additions & 2 deletions tests/disconnection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func TestDisconnection_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

// Wait for rollapp finalized
Expand Down Expand Up @@ -321,7 +321,7 @@ func TestDisconnection_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

// Wait for rollapp finalized
Expand Down
12 changes: 6 additions & 6 deletions tests/eibc_ack_error_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ func TestEIBC_AckError_Dym_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -581,7 +581,7 @@ func TestEIBC_AckError_RA_Token_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -964,7 +964,7 @@ func TestEIBC_AckError_3rd_Party_Token_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1420,7 +1420,7 @@ func TestEIBC_AckError_Dym_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1819,7 +1819,7 @@ func TestEIBC_AckError_RA_Token_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -2200,7 +2200,7 @@ func TestEIBC_AckError_3rd_Party_Token_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down
2 changes: 1 addition & 1 deletion tests/eibc_corrupted_memo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func TestEIBCCorruptedMemoNegative_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down
8 changes: 4 additions & 4 deletions tests/eibc_fee_market_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func TestEIBCFulfillAlreadyFulfilledDemand_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -470,7 +470,7 @@ func TestEIBCAlreadyFulfilledDemand_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -788,7 +788,7 @@ func TestEIBCUnallowedSigner_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1052,7 +1052,7 @@ func TestEIBCUnallowedSigner_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down
2 changes: 1 addition & 1 deletion tests/eibc_fee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func TestEIBCFeeTooHigh_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down
16 changes: 8 additions & 8 deletions tests/eibc_feemarket_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func TestEIBC_Fee_Market_Success_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -456,7 +456,7 @@ func TestEIBC_Fee_Market_Success_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -763,7 +763,7 @@ func TestEIBC_Fee_Market_Auto_Created_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1054,7 +1054,7 @@ func TestEIBC_Fee_Market_Auto_Created_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r1, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1313,7 +1313,7 @@ func TestEIBCUpdateOnAckErrAndTimeout_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1564,7 +1564,7 @@ func TestEIBCUpdateOnAckErrAndTimeout_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -1821,7 +1821,7 @@ func TestEIBCUpdateOnTimeout_Unallowed_EVM(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down Expand Up @@ -2046,7 +2046,7 @@ func TestEIBCUpdateOnTimeout_Unallowed_Wasm(t *testing.T) {

// This can be used to write to the block database which will index all block data e.g. txs, msgs, events, etc.
// BlockDatabaseFile: test.DefaultBlockDatabaseFilepath(),
}, nil, "", nil)
}, nil, "", nil, false, 780)
require.NoError(t, err)

CreateChannel(ctx, t, r, eRep, dymension.CosmosChain, rollapp1.CosmosChain, ibcPath)
Expand Down
Loading

0 comments on commit 559cf44

Please sign in to comment.