Companion for Polkadot 7253 (#2621)

* Companion for Polkadot #7253

Polkadot PR: https://github.com/paritytech/polkadot/pull/7253

* Update Cargo.lock

* Update Cargo.lock

* update lockfile for {"polkadot", "substrate"}

---------

Co-authored-by: parity-processbot <>
This commit is contained in:
Marcin S
2023-05-25 17:07:56 -04:00
committed by GitHub
parent ec21c0a24d
commit 972814a2be
4 changed files with 314 additions and 270 deletions
+311 -267
View File
File diff suppressed because it is too large Load Diff
@@ -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"
@@ -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`");
@@ -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");