Clean up session key rotation (#1911)

* Clean up session key rotation

* Fix build

* Bump version
This commit is contained in:
Gav Wood
2019-03-04 18:03:44 +01:00
committed by GitHub
parent b599556e21
commit 755b53bd05
4 changed files with 18 additions and 13 deletions
+3 -3
View File
@@ -60,8 +60,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("node"),
impl_name: create_runtime_str!("substrate-node"),
authoring_version: 10,
spec_version: 31,
impl_version: 33,
spec_version: 32,
impl_version: 32,
apis: RUNTIME_API_VERSIONS,
};
@@ -101,7 +101,7 @@ impl indices::Trait for Runtime {
impl balances::Trait for Runtime {
type Balance = Balance;
type OnFreeBalanceZero = ((Staking, Contract), Democracy);
type OnFreeBalanceZero = (((Staking, Contract), Democracy), Session);
type OnNewAccount = Indices;
type EnsureAccountLiquid = (Staking, Democracy);
type Event = Event;