From ceb7ae52fd03cf556fa94fbda5ad2891b9b29cad Mon Sep 17 00:00:00 2001 From: Joshy Orndorff Date: Wed, 26 Jun 2019 17:22:18 -0400 Subject: [PATCH 1/3] Staking: Minor typo fix: of -> or --- srml/staking/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srml/staking/src/lib.rs b/srml/staking/src/lib.rs index 17d0baa5d92b1..0ba4308cadad7 100644 --- a/srml/staking/src/lib.rs +++ b/srml/staking/src/lib.rs @@ -51,7 +51,7 @@ //! #### Staking //! //! Almost any interaction with the staking module requires a process of _**bonding**_ (also known as -//! being a _staker_). To become *bonded* a fund-holding account known as the _stash account_, which holds some of all of the +//! being a _staker_). To become *bonded* a fund-holding account known as the _stash account_, which holds some or all of the //! funds that become frozen in place as part of the staking process, is paired with an active **controller** account which issues //! instructions on how they shall be used. //! From 9439654e2486c66d433b949be07d787e0819039a Mon Sep 17 00:00:00 2001 From: Joshy Orndorff Date: Thu, 27 Jun 2019 10:50:15 -0400 Subject: [PATCH 2/3] Bump impl version (only rustdoc changed). --- node-template/runtime/src/lib.rs | 2 +- node/runtime/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/node-template/runtime/src/lib.rs b/node-template/runtime/src/lib.rs index 6c2bf4d246629..80ed73ee91f99 100644 --- a/node-template/runtime/src/lib.rs +++ b/node-template/runtime/src/lib.rs @@ -96,7 +96,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_name: create_runtime_str!("node-template"), authoring_version: 3, spec_version: 4, - impl_version: 4, + impl_version: 5, apis: RUNTIME_API_VERSIONS, }; diff --git a/node/runtime/src/lib.rs b/node/runtime/src/lib.rs index 49c599b987e8f..2395def8784d6 100644 --- a/node/runtime/src/lib.rs +++ b/node/runtime/src/lib.rs @@ -59,7 +59,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_name: create_runtime_str!("substrate-node"), authoring_version: 10, spec_version: 60, - impl_version: 62, + impl_version: 63, apis: RUNTIME_API_VERSIONS, }; From 6afb86001b26bd0ce128dac0ab714545fa3f217c Mon Sep 17 00:00:00 2001 From: Joshy Orndorff Date: Fri, 28 Jun 2019 09:21:11 -0400 Subject: [PATCH 3/3] Revert "Bump impl version (only rustdoc changed)." This reverts commit 9439654e2486c66d433b949be07d787e0819039a. --- node-template/runtime/src/lib.rs | 2 +- node/runtime/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/node-template/runtime/src/lib.rs b/node-template/runtime/src/lib.rs index 80ed73ee91f99..6c2bf4d246629 100644 --- a/node-template/runtime/src/lib.rs +++ b/node-template/runtime/src/lib.rs @@ -96,7 +96,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_name: create_runtime_str!("node-template"), authoring_version: 3, spec_version: 4, - impl_version: 5, + impl_version: 4, apis: RUNTIME_API_VERSIONS, }; diff --git a/node/runtime/src/lib.rs b/node/runtime/src/lib.rs index 2395def8784d6..49c599b987e8f 100644 --- a/node/runtime/src/lib.rs +++ b/node/runtime/src/lib.rs @@ -59,7 +59,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_name: create_runtime_str!("substrate-node"), authoring_version: 10, spec_version: 60, - impl_version: 63, + impl_version: 62, apis: RUNTIME_API_VERSIONS, };