Skip to content

Commit

Permalink
chore: update zombienet-sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
evilrobot-01 committed Oct 10, 2024
1 parent cf8cdef commit 063b598
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 27 deletions.
38 changes: 23 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ toml_edit = { version = "0.22", features = ["serde"] }
symlink = "0.1"
serde_json = { version = "1.0", features = ["preserve_order"] }
serde = { version = "1.0", features = ["derive"] }
zombienet-sdk = { version = "0.2.7", git = "https://github.com/r0gue-io/zombienet-sdk", branch = "hrmp" }
zombienet-support = { version = "0.2.7", git = "https://github.com/r0gue-io/zombienet-sdk", branch = "hrmp" }
zombienet-sdk = "0.2.13"
git2_credentials = "0.13.0"

# pop-cli
Expand Down
6 changes: 2 additions & 4 deletions crates/pop-parachains/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ glob.workspace = true
serde_json.workspace = true
strum.workspace = true
strum_macros.workspace = true
# Subxt dependenices need to be at least 0.37 because of the new SignedExtension
subxt-signer = { version = "0.37", features = ["subxt", "sr25519"] }
subxt = "0.37"
subxt-signer.workspace = true
subxt.workspace = true
tar.workspace = true
tempfile.workspace = true
thiserror.workspace = true
Expand All @@ -34,7 +33,6 @@ toml_edit.workspace = true
walkdir.workspace = true
# Zombienet
zombienet-sdk.workspace = true
zombienet-support.workspace = true

# Pop
pop-common = { path = "../pop-common", version = "0.4.0" }
Expand Down
11 changes: 5 additions & 6 deletions crates/pop-parachains/src/up/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ use std::{
use symlink::{remove_symlink_file, symlink_file};
use tempfile::{Builder, NamedTempFile};
use toml_edit::{value, ArrayOfTables, DocumentMut, Formatted, Item, Table, Value};
use zombienet_sdk::{Network, NetworkConfig, NetworkConfigExt};
use zombienet_support::fs::local::LocalFileSystem;
use zombienet_sdk::{LocalFileSystem, Network, NetworkConfig, NetworkConfigExt};

mod chain_specs;
mod parachains;
Expand Down Expand Up @@ -279,10 +278,10 @@ impl Zombienet {
Ok(relay::default(version, runtime_version, chain, cache).await?)
}

/// The name of the relay chain.
pub fn relay_chain(&self) -> &str {
&self.relay_chain.chain
}
/// The name of the relay chain.
pub fn relay_chain(&self) -> &str {
&self.relay_chain.chain
}

/// Whether any HRMP channels are to be pre-opened.
pub fn hrmp_channels(&self) -> bool {
Expand Down

0 comments on commit 063b598

Please sign in to comment.