This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
srml/authority-discovery: Abstract session key type #3698
Merged
andresilva
merged 7 commits into
paritytech:master
from
mxinden:authority-discovery-no-im-online
Oct 1, 2019
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
da0a9e0
srml/authority-discovery: Abstract session key type
mxinden 2181d2c
srml/authority-discovery: Fix line length
mxinden b3eae71
srml/authority-discovery/Cargo: Move babe to dev-dependencies
mxinden 82de19a
Merge remote-tracking branch 'paritytech/master' into authority-disco…
mxinden a2ea720
node/runtime: Bump implementation version
mxinden 9d6b4c2
srml/authority-discovery: Add doc comment for authority discovery Trait
mxinden 44b5060
Merge remote-tracking branch 'paritytech/master' into authority-disco…
mxinden 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -5,33 +5,32 @@ authors = ["Parity Technologies <[email protected]>"] | |
| edition = "2018" | ||
|
|
||
| [dependencies] | ||
| app-crypto = { package = "substrate-application-crypto", path = "../../core/application-crypto", default-features = false } | ||
| codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } | ||
| sr-primitives = { path = "../../core/sr-primitives", default-features = false } | ||
| primitives = { package = "substrate-primitives", path = "../../core/primitives", default-features = false } | ||
| app-crypto = { package = "substrate-application-crypto", path = "../../core/application-crypto", default-features = false } | ||
| rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false } | ||
| runtime-io = { package = "sr-io", path = "../../core/sr-io", default-features = false } | ||
| serde = { version = "1.0", optional = true } | ||
| session = { package = "srml-session", path = "../session", default-features = false } | ||
| im-online = { package = "srml-im-online", path = "../im-online", default-features = false } | ||
| sr-primitives = { path = "../../core/sr-primitives", default-features = false } | ||
| support = { package = "srml-support", path = "../support", default-features = false } | ||
| runtime-io = { package = "sr-io", path = "../../core/sr-io", default-features = false } | ||
| system = { package = "srml-system", path = "../system", default-features = false } | ||
|
|
||
| [dev-dependencies] | ||
| babe-primitives = { package = "substrate-consensus-babe-primitives", path = "../../core/consensus/babe/primitives", default-features = false } | ||
| sr-staking-primitives = { path = "../../core/sr-staking-primitives", default-features = false } | ||
|
|
||
| [features] | ||
| default = ["std"] | ||
| std = [ | ||
| "app-crypto/std", | ||
| "codec/std", | ||
| "sr-primitives/std", | ||
| "primitives/std", | ||
| "rstd/std", | ||
| "runtime-io/std", | ||
| "serde", | ||
| "session/std", | ||
| "im-online/std", | ||
| "sr-primitives/std", | ||
| "support/std", | ||
| "runtime-io/std", | ||
| "system/std", | ||
| "app-crypto/std", | ||
| ] | ||
This file contains hidden or 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
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.
needs docs