Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit b8baab4

Browse files
authored
Enable grandpa migration. (#549)
* Enable grandpa migration. * Bump runtime version
1 parent 3489548 commit b8baab4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ democracy = { package = "srml-democracy", git = "https://github.com/paritytech/s
3939
elections-phragmen = { package = "srml-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
4040
executive = { package = "srml-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
4141
finality-tracker = { package = "srml-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
42-
grandpa = { package = "srml-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
42+
grandpa = { package = "srml-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "polkadot-master" }
4343
im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
4444
indices = { package = "srml-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
4545
membership = { package = "srml-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }

Diff for: runtime/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
9999
spec_name: create_runtime_str!("kusama"),
100100
impl_name: create_runtime_str!("parity-kusama"),
101101
authoring_version: 1,
102-
spec_version: 1016,
102+
spec_version: 1017,
103103
impl_version: 0,
104104
apis: RUNTIME_API_VERSIONS,
105105
};

0 commit comments

Comments
 (0)