Skip to content

Commit

Permalink
copy paste cosmos integration test config for astria
Browse files Browse the repository at this point in the history
  • Loading branch information
jbowen93 committed Oct 19, 2024
1 parent a69c0a1 commit 4491f3b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
use ibc_relayer::config::ChainConfig;
use ibc_relayer::keyring::Store;
use ibc_test_framework::prelude::*;
use prost::bytes::buf::Chain;
use std::env;
use std::path::PathBuf;

Expand All @@ -48,7 +49,13 @@ impl TestOverrides for Test {
// keys are stored to ~/.hermes/keys so that we can use them

Check warning on line 49 in tools/integration-test/src/bin/test_setup_with_binary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_binary_channel.rs
// with external relayer commands.
chain_config.key_store_type = Store::Test;
}
},
ChainConfig::Astria(chain_config) => {
// Modify the key store type to `Store::Test` so that the wallet
// keys are stored to ~/.hermes/keys so that we can use them
// with external relayer commands.

Check warning on line 56 in tools/integration-test/src/bin/test_setup_with_binary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_binary_channel.rs
chain_config.key_store_type = Store::Test;
},
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@ impl TestOverrides for Test {
// keys are stored to ~/.hermes/keys so that we can use them

Check warning on line 49 in tools/integration-test/src/bin/test_setup_with_fee_enabled_binary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_fee_enabled_binary_channel.rs
// with external relayer commands.
chain_config.key_store_type = Store::Test;
}
},
ChainConfig::Astria(chain_config) => {
// Modify the key store type to `Store::Test` so that the wallet
// keys are stored to ~/.hermes/keys so that we can use them
// with external relayer commands.

Check warning on line 56 in tools/integration-test/src/bin/test_setup_with_fee_enabled_binary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_fee_enabled_binary_channel.rs
chain_config.key_store_type = Store::Test;
},
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ impl TestOverrides for Test {
// keys are stored to ~/.hermes/keys so that we can use them

Check warning on line 48 in tools/integration-test/src/bin/test_setup_with_ternary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_ternary_channel.rs
// with external relayer commands.
chain_config.key_store_type = Store::Test;
}
},
ChainConfig::Astria(chain_config) => {
// Modify the key store type to `Store::Test` so that the wallet
// keys are stored to ~/.hermes/keys so that we can use them
// with external relayer commands.

Check warning on line 55 in tools/integration-test/src/bin/test_setup_with_ternary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_ternary_channel.rs
chain_config.key_store_type = Store::Test;
},
}
}
}
Expand Down

0 comments on commit 4491f3b

Please sign in to comment.