-
Notifications
You must be signed in to change notification settings - Fork 798
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-authority-discovery
to umbrella crate
#6619
Open
runcomet
wants to merge
15
commits into
paritytech:master
Choose a base branch
from
runcomet:umbrella-authority-discovery
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+40
−61
Open
Changes from 8 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
4fd3f1a
frame::prelude
runcomet 9129887
cargo fmt
runcomet fab0db6
Merge branch 'master' into umbrella-authority-discovery
runcomet c1c1023
add prdoc
runcomet 083f63d
Merge branch 'master' into umbrella-authority-discovery
re-gius 5fa4693
WIP nit
runcomet eb483ce
Merge branch 'master' into umbrella-authority-discovery
runcomet 79d15d6
sp-application-crypto to umbrella
runcomet cccfb0d
taplo
runcomet 6fe651c
Merge branch 'master' into umbrella-authority-discovery
runcomet 86c2206
remove experimental feature
runcomet 0cf6c10
Merge branch 'master' into umbrella-authority-discovery
runcomet a9e74f8
remove extra mod
runcomet 5c6ebd9
remoe crypto:Pair from umbrella
runcomet fbd0cf6
Merge branch 'master' into umbrella-authority-discovery
runcomet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -224,17 +224,24 @@ pub mod prelude { | |
pub use super::derive::*; | ||
|
||
/// All hashing related things | ||
pub use super::hashing::*; | ||
pub use super::cryptography::*; | ||
|
||
/// All arithmetic types and traits used for safe math. | ||
pub use super::arithmetic::*; | ||
|
||
/// All account management related things. | ||
pub use super::account::*; | ||
|
||
/// Runtime traits | ||
#[doc(no_inline)] | ||
pub use sp_runtime::traits::{ | ||
BlockNumberProvider, Bounded, Convert, DispatchInfoOf, Dispatchable, ReduceBy, | ||
BlockNumberProvider, Bounded, Convert, ConvertInto, DispatchInfoOf, Dispatchable, ReduceBy, | ||
ReplaceWithDefault, SaturatedConversion, Saturating, StaticLookup, TrailingZeroInput, | ||
}; | ||
|
||
/// Bounded storage related types. | ||
pub use sp_runtime::{BoundedSlice, BoundedVec, WeakBoundedVec}; | ||
|
||
/// Other error/result types for runtime | ||
#[doc(no_inline)] | ||
pub use sp_runtime::{ | ||
|
@@ -526,6 +533,17 @@ pub mod traits { | |
pub use sp_runtime::traits::*; | ||
} | ||
|
||
/// All account management related traits. | ||
/// | ||
/// This is already part of the [`prelude`]. | ||
pub mod account { | ||
pub use frame_support::traits::{ | ||
AsEnsureOriginWithArg, ChangeMembers, EitherOfDiverse, FindAuthor, InitializeMembers, | ||
}; | ||
pub use sp_application_crypto::{KeyTypeId, Pair}; | ||
pub use sp_runtime::traits::{IdentifyAccount, IdentityLookup}; | ||
} | ||
|
||
/// The arithmetic types used for safe math. | ||
/// | ||
/// This is already part of the [`prelude`]. | ||
|
@@ -547,8 +565,12 @@ pub mod derive { | |
pub use sp_runtime::RuntimeDebug; | ||
} | ||
|
||
pub mod hashing { | ||
pub use sp_core::{hashing::*, H160, H256, H512, U256, U512}; | ||
pub mod cryptography { | ||
pub use sp_core::{ | ||
crypto::{VrfPublic, VrfSecret, Wraps}, | ||
hashing::*, | ||
Pair, H160, H256, H512, U256, U512, | ||
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. please remove |
||
}; | ||
pub use sp_runtime::traits::{BlakeTwo256, Hash, Keccak256}; | ||
} | ||
|
||
|
@@ -578,6 +600,8 @@ pub mod deps { | |
#[cfg(feature = "runtime")] | ||
pub use sp_api; | ||
#[cfg(feature = "runtime")] | ||
pub use sp_application_crypto; | ||
#[cfg(feature = "runtime")] | ||
pub use sp_block_builder; | ||
#[cfg(feature = "runtime")] | ||
pub use sp_consensus_aura; | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 remove the
experimental
feature flag from now on as in #7177