Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temp ci test #33

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ ibc-test-framework = { version = "0.28.0", path = "tools/test-framework" }
ibc-integration-test = { version = "0.28.0", path = "tools/integration-test" }

# Tendermint dependencies
tendermint = { version = "0.36.0", default-features = false }
tendermint-light-client = { version = "0.36.0", default-features = false }
tendermint-light-client-detector = { version = "0.36.0", default-features = false }
tendermint-light-client-verifier = { version = "0.36.0", default-features = false }
tendermint-proto = { version = "0.36.0" }
tendermint-rpc = { version = "0.36.0" }
tendermint-testgen = { version = "0.36.0" }
tendermint = { version = "=0.36.0", default-features = false }
tendermint-light-client = { version = "=0.36.0", default-features = false }
tendermint-light-client-detector = { version = "=0.36.0", default-features = false }
tendermint-light-client-verifier = { version = "=0.36.0", default-features = false }
tendermint-proto = { version = "=0.36.0" }
tendermint-rpc = { version = "=0.36.0" }
tendermint-testgen = { version = "=0.36.0" }

# Namada dependencies
namada_ibc = { git = "https://github.com/anoma/namada", tag = "v0.37.0" }
Expand Down Expand Up @@ -78,7 +78,7 @@ hex = "0.4.3"
http = "0.2.9"
humantime = "2.1.0"
humantime-serde = "1.1.1"
ibc-proto = "0.44.0"
ibc-proto = "=0.44.0"
ics23 = "0.11.1"
itertools = "0.12.1"
moka = "0.12.5"
Expand Down
3 changes: 2 additions & 1 deletion crates/relayer-cli/src/commands/create/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ pub struct CreateChannelCommand {
#[clap(
long = "order",
value_name = "ORDER",
help = "The channel ordering, valid options 'unordered' (default) and 'ordered'"
help = "The channel ordering, valid options 'unordered' (default) and 'ordered'",
default_value_t
)]
order: Ordering,

Expand Down
1 change: 1 addition & 0 deletions crates/relayer-cli/src/commands/tx/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ pub struct TxChanOpenInitCmd {

#[clap(
long = "order",
default_value_t,
value_name = "ORDER",
help = "The channel ordering, valid options 'unordered' (default) and 'ordered'"
)]
Expand Down
13 changes: 1 addition & 12 deletions tools/integration-test/src/tests/ica.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,18 +247,7 @@ impl BinaryConnectionTest for ICACloseChannelTest {
chains: ConnectedChains<Controller, Host>,
connection: ConnectedConnection<Controller, Host>,
) -> Result<(), Error> {
let gas_denom_str = match relayer
.config
.chains
.first()
.ok_or_else(|| eyre!("chain configuration is empty"))?
{
ChainConfig::CosmosSdk(chain_config) | ChainConfig::Namada(chain_config) => {
chain_config.gas_price.denom.clone()
}
};
let stake_denom: MonoTagged<Host, Denom> =
MonoTagged::new(Denom::base(&gas_denom_str, &gas_denom_str));
let stake_denom: MonoTagged<Host, Denom> = MonoTagged::new(Denom::base("stake", "stake"));
let (wallet, ica_address, controller_channel_id, controller_port_id) = relayer
.with_supervisor(|| {
// Register an interchain account on behalf of
Expand Down
1 change: 1 addition & 0 deletions tools/test-framework/src/bootstrap/consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ pub fn bootstrap_consumer_node(
config::cosmos::set_soft_opt_out_threshold(genesis, "0.05")?;
config::cosmos::consensus_params_max_gas(genesis, "3000000")?;
config::cosmos::globalfee_minimum_gas_prices(genesis, globalfee_minimum_gas)?;
config::cosmos::set_retry_delay_period(genesis, "100s")?;
Ok(())
})?;

Expand Down
1 change: 1 addition & 0 deletions tools/test-framework/src/docs/walkthroughs/memo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
//! )?;
//!
//! let denom_b = derive_ibc_denom(
//! &chains.node_b.chain_driver().value().chain_type,
//! &channel.port_b.as_ref(),
//! &channel.channel_id_b.as_ref(),
//! &denom_a,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
//! sleep(Duration::from_secs(1));
//!
//! let denom_b = derive_ibc_denom(
//! &chains.node_b.chain_driver().value().chain_type,
//! &channel.port_b.as_ref(),
//! &channel.channel_id_b.as_ref(),
//! &denom_a,
Expand Down
Loading