mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 23:21:02 +00:00
8615ac834c
* [Polkadot Companion] for 7101 PR: https://github.com/paritytech/polkadot/pull/7101 * update lockfile for {"polkadot", "substrate"} --------- Co-authored-by: parity-processbot <>
28 lines
1.2 KiB
Rust
28 lines
1.2 KiB
Rust
// Copyright 2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Cumulus.
|
|
|
|
// Cumulus is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Cumulus is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Cumulus. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Provides the [`VALIDATION_WORKER`] for integration tests in Cumulus.
|
|
//!
|
|
//! The validation worker is used by the relay chain to validate parachains. This worker is placed
|
|
//! in an extra process to provide better security and to ensure that a worker can be killed etc.
|
|
//!
|
|
//! !!This should only be used for tests!!
|
|
|
|
pub use polkadot_node_core_pvf_worker;
|
|
|
|
/// The path to the validation worker.
|
|
pub const VALIDATION_WORKER: &str = concat!(env!("OUT_DIR"), "/validation-worker");
|