-
Notifications
You must be signed in to change notification settings - Fork 124
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
Fix comments of default Configs #611
Conversation
@@ -15,7 +15,7 @@ use crate::{ | |||
use codec::{Decode, Encode}; | |||
use core::fmt::Debug; | |||
|
|||
/// Default set of commonly used types by Substrate kitchensink runtime. | |||
/// Commonly used config of Substrate runtimes that use the asset pallet. |
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.
Maybe "Standard runtime config for Substrate and Polkadot nodes that use the asset pallet" ?
@@ -11,7 +11,7 @@ use crate::{ | |||
config::WithExtrinsicParams, AssetRuntimeConfig, Config, GenericExtrinsicParams, PlainTip, | |||
}; | |||
|
|||
/// Default set of commonly used types by Polkadot nodes. | |||
/// Commonly used config of Substrate and Polkadot nodes. | |||
pub type DefaultRuntimeConfig = |
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.
Similar to previous comment: "Standard runtime config for Substrate and Polkadot nodes that use native payment" ?
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.
I'd refrain from using native payment, as Parity does not use it either.
What about a simple /// Standard runtime config for Substrate and Polkadot nodes.
?
No description provided.