Move parachain inherent data into its own crate (#326)
This renames and moves the `SystemInherentData` into its own crate. The struct is now called `ParachainInherentData`. Besides moving the struct, this also moves the code for creating this struct into this crate.
Showing
- cumulus/Cargo.lock 18 additions, 0 deletionscumulus/Cargo.lock
- cumulus/Cargo.toml 1 addition, 0 deletionscumulus/Cargo.toml
- cumulus/client/collator/Cargo.toml 1 addition, 0 deletionscumulus/client/collator/Cargo.toml
- cumulus/client/collator/src/lib.rs 70 additions, 247 deletionscumulus/client/collator/src/lib.rs
- cumulus/pallets/parachain-system/Cargo.toml 2 additions, 0 deletionscumulus/pallets/parachain-system/Cargo.toml
- cumulus/pallets/parachain-system/src/lib.rs 14 additions, 10 deletionscumulus/pallets/parachain-system/src/lib.rs
- cumulus/primitives/core/Cargo.toml 3 additions, 9 deletionscumulus/primitives/core/Cargo.toml
- cumulus/primitives/core/src/lib.rs 0 additions, 31 deletionscumulus/primitives/core/src/lib.rs
- cumulus/primitives/parachain-inherent/Cargo.toml 39 additions, 0 deletionscumulus/primitives/parachain-inherent/Cargo.toml
- cumulus/primitives/parachain-inherent/src/client_side.rs 225 additions, 0 deletionscumulus/primitives/parachain-inherent/src/client_side.rs
- cumulus/primitives/parachain-inherent/src/lib.rs 64 additions, 0 deletionscumulus/primitives/parachain-inherent/src/lib.rs
- cumulus/test/client/Cargo.toml 1 addition, 0 deletionscumulus/test/client/Cargo.toml
- cumulus/test/client/src/block_builder.rs 5 additions, 6 deletionscumulus/test/client/src/block_builder.rs
Please register or sign in to comment