Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
polkadot
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Pugh
polkadot
Commits
b8baab46
Unverified
Commit
b8baab46
authored
5 years ago
by
Gavin Wood
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Enable grandpa migration. (#549)
* Enable grandpa migration. * Bump runtime version
parent
34895483
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
runtime/Cargo.toml
+1
-1
1 addition, 1 deletion
runtime/Cargo.toml
runtime/src/lib.rs
+1
-1
1 addition, 1 deletion
runtime/src/lib.rs
with
2 additions
and
2 deletions
runtime/Cargo.toml
+
1
−
1
View file @
b8baab46
...
@@ -39,7 +39,7 @@ democracy = { package = "srml-democracy", git = "https://github.com/paritytech/s
...
@@ -39,7 +39,7 @@ democracy = { package = "srml-democracy", git = "https://github.com/paritytech/s
elections-phragmen
=
{
package
=
"srml-elections-phragmen"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
elections-phragmen
=
{
package
=
"srml-elections-phragmen"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
executive
=
{
package
=
"srml-executive"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
executive
=
{
package
=
"srml-executive"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
finality-tracker
=
{
package
=
"srml-finality-tracker"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
finality-tracker
=
{
package
=
"srml-finality-tracker"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
grandpa
=
{
package
=
"srml-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
grandpa
=
{
package
=
"srml-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
features
=
[
"migrate-authorities"
],
branch
=
"polkadot-master"
}
im-online
=
{
package
=
"srml-im-online"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
im-online
=
{
package
=
"srml-im-online"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
indices
=
{
package
=
"srml-indices"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
indices
=
{
package
=
"srml-indices"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
membership
=
{
package
=
"srml-membership"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
membership
=
{
package
=
"srml-membership"
,
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"polkadot-master"
}
...
...
This diff is collapsed.
Click to expand it.
runtime/src/lib.rs
+
1
−
1
View file @
b8baab46
...
@@ -99,7 +99,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
...
@@ -99,7 +99,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name
:
create_runtime_str!
(
"kusama"
),
spec_name
:
create_runtime_str!
(
"kusama"
),
impl_name
:
create_runtime_str!
(
"parity-kusama"
),
impl_name
:
create_runtime_str!
(
"parity-kusama"
),
authoring_version
:
1
,
authoring_version
:
1
,
spec_version
:
101
6
,
spec_version
:
101
7
,
impl_version
:
0
,
impl_version
:
0
,
apis
:
RUNTIME_API_VERSIONS
,
apis
:
RUNTIME_API_VERSIONS
,
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment