-
Notifications
You must be signed in to change notification settings - Fork 132
Remove SOURCE_PARACHAIN_PARA_ID #1716
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,8 @@ | |
|
|
||
| use bp_messages::MessageNonce; | ||
| use bp_runtime::{ | ||
| Chain as ChainBase, EncodedOrDecodedCall, HashOf, TransactionEra, TransactionEraOf, | ||
| Chain as ChainBase, EncodedOrDecodedCall, HashOf, Parachain as ParachainBase, TransactionEra, | ||
| TransactionEraOf, | ||
| }; | ||
| use codec::{Codec, Encode}; | ||
| use jsonrpsee::core::{DeserializeOwned, Serialize}; | ||
|
|
@@ -72,6 +73,9 @@ pub trait RelayChain: Chain { | |
| const PARACHAINS_FINALITY_PALLET_NAME: &'static str; | ||
| } | ||
|
|
||
| /// Substrate-based parachain from minimal relay-client point of view. | ||
| pub trait Parachain: Chain + ParachainBase {} | ||
|
Contributor
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. Is it really required? If so, can we do a blanket impl here (
Collaborator
Author
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. It's not required, for the moment it's just a convenience trait (we can specify only |
||
|
|
||
| /// Substrate-based chain that is using direct GRANDPA finality from minimal relay-client point of | ||
| /// view. | ||
| /// | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.