mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21: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
24 lines
688 B
TOML
24 lines
688 B
TOML
[package]
|
|
name = "test-parachains"
|
|
version = "0.7.22"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Integration tests using the test-parachains"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tiny-keccak = "1.5.0"
|
|
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
|
|
|
|
parachain = { package = "polkadot-parachain", path = ".." }
|
|
adder = { package = "test-parachain-adder", path = "adder" }
|
|
halt = { package = "test-parachain-halt", path = "halt" }
|
|
code-upgrader = { package = "test-parachain-code-upgrader", path = "code-upgrader" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"adder/std",
|
|
"halt/std",
|
|
"code-upgrader/std",
|
|
]
|