-
Notifications
You must be signed in to change notification settings - Fork 804
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate pallet-aura
to umbrella crate
#6622
base: master
Are you sure you want to change the base?
Changes from 5 commits
a4b0c01
7c38b15
1d19f12
da689ef
0356076
d94f026
abf0a09
6e07bf6
f7e241b
61fc9b1
d4e31b8
cbba423
76f1e12
e57100d
5d5400a
85afcc5
7c953fd
00ce153
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0 | ||
# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json | ||
|
||
title: migrate pallet-aura to umbrella crate | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
Imports frame umbrella crate systems into pallet-aura and | ||
includes BoundedSlice as a runtime::prelude export from the | ||
polkadot-sdk-frame crate. | ||
|
||
crates: | ||
- name: pallet-aura | ||
bump: minor | ||
- name: polkadot-sdk-frame | ||
bump: minor |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -342,6 +342,9 @@ pub mod runtime { | |
/// Consider using the new version of this [`frame_construct_runtime`]. | ||
pub use frame_support::construct_runtime; | ||
|
||
/// Related to runtime construction. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comment is not relevant for me |
||
pub use frame_support::{BoundedSlice, BoundedVec}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you added them just to use the runtime prelude in the |
||
|
||
/// Macro to amalgamate the runtime into `struct Runtime`. | ||
/// | ||
/// This is the newer version of [`construct_runtime`]. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please read the new checklist named in the issue, and update the PR to adhere to it. Thank you!