-
Notifications
You must be signed in to change notification settings - Fork 710
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
Remove AccountKeyring everywhere #5899
base: master
Are you sure you want to change the base?
Remove AccountKeyring everywhere #5899
Conversation
ca3893d
to
4011fc8
Compare
600de1c
to
d2b43c2
Compare
@programskillforverification can you please highlight with a comment the main place where AccountKeyring is defined and changed/removed? Lots of files here :P |
@@ -32,20 +32,11 @@ pub mod ed25519; | |||
#[cfg(feature = "bandersnatch-experimental")] | |||
pub mod bandersnatch; | |||
|
|||
/// Convenience export: Sr25519's Keyring is exposed as `AccountKeyring`, since it tends to be | |||
/// used for accounts (although it may also be used by authorities). | |||
pub use sr25519::Keyring as AccountKeyring; |
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.
@shawntabrizi AccountKeyring definition here
#[cfg(feature = "bandersnatch-experimental")] | ||
pub use bandersnatch::Keyring as BandersnatchKeyring; | ||
pub use ed25519::Keyring as Ed25519Keyring; | ||
pub use sr25519::Keyring as Sr25519Keyring; | ||
|
||
pub mod test { | ||
/// The keyring for use with accounts when using the test runtime. | ||
pub use super::ed25519::Keyring as AccountKeyring; |
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.
@shawntabrizi and here
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.
doesn't seem this was used anywhere.
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.
lgtm
Pull Request is not mergeable
Close: #5858