Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Companion for Polkadot #7253
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcnski committed May 22, 2023
1 parent 673e9f6 commit 11a59a5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion test/relay-validation-worker-provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build = "build.rs"
[dependencies]

# Polkadot
polkadot-node-core-pvf-worker = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", branch = "master" }

[build-dependencies]
toml = "0.7.4"
2 changes: 1 addition & 1 deletion test/relay-validation-worker-provider/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ fn create_project(out_dir: &Path) -> PathBuf {
fs::write(
project_dir.join("src").join("main.rs"),
r#"
cumulus_test_relay_validation_worker_provider::polkadot_node_core_pvf_worker::decl_puppet_worker_main!();
cumulus_test_relay_validation_worker_provider::polkadot_node_core_pvf::decl_puppet_worker_main!();
"#,
)
.expect("Writes `main.rs`");
Expand Down
2 changes: 1 addition & 1 deletion test/relay-validation-worker-provider/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
//!
//! !!This should only be used for tests!!

pub use polkadot_node_core_pvf_worker;
pub use polkadot_node_core_pvf;

/// The path to the validation worker.
pub const VALIDATION_WORKER: &str = concat!(env!("OUT_DIR"), "/validation-worker");

0 comments on commit 11a59a5

Please sign in to comment.