mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 12:51:02 +00:00
10cec3b591
* upgrade primitives to allow changing validation function * set up storage schema for old parachains code * fix compilation errors * fix test compilation * add some tests for past code meta * most of the runtime logic for code upgrades * implement old-code pruning * add a couple tests * clean up remaining TODOs * add a whole bunch of tests for runtime functionality * remove unused function * fix runtime compilation * extract some primitives to parachain crate * add validation-code upgrades to validation params and result * extend validation params with code upgrade fields * provide maximums to validation params * port test-parachains * add a code-upgrader test-parachain and tests * fix collator tests * move test-parachains to own folder to work around compilation errors * fix test compilation * update the Cargo.lock * fix parachains tests * remove dbg! invocation * use new pool in code-upgrader * bump lockfile * link TODO to issue
54 lines
1.9 KiB
Rust
54 lines
1.9 KiB
Rust
// Copyright 2017-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot 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.
|
|
|
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Defines primitive types for creating or validating a parachain.
|
|
//!
|
|
//! When compiled with standard library support, this crate exports a `wasm`
|
|
//! module that can be used to validate parachain WASM.
|
|
//!
|
|
//! ## Parachain WASM
|
|
//!
|
|
//! Polkadot parachain WASM is in the form of a module which imports a memory
|
|
//! instance and exports a function `validate_block`.
|
|
//!
|
|
//! `validate` accepts as input two `i32` values, representing a pointer/length pair
|
|
//! respectively, that encodes [`ValidationParams`].
|
|
//!
|
|
//! `validate` returns an `u64` which is a pointer to an `u8` array and its length.
|
|
//! The data in the array is expected to be a SCALE encoded [`ValidationResult`].
|
|
//!
|
|
//! ASCII-diagram demonstrating the return data format:
|
|
//!
|
|
//! ```ignore
|
|
//! [pointer][length]
|
|
//! 32bit 32bit
|
|
//! ^~~ returned pointer & length
|
|
//! ```
|
|
//!
|
|
//! The wasm-api (enabled only when `std` feature is not enabled and `wasm-api` feature is enabled)
|
|
//! provides utilities for setting up a parachain WASM module in Rust.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
#[cfg(feature = "std")]
|
|
pub mod wasm_executor;
|
|
pub mod primitives;
|
|
|
|
mod wasm_api;
|
|
|
|
#[cfg(all(not(feature = "std"), feature = "wasm-api"))]
|
|
pub use wasm_api::*;
|