Migrate pallet-session to the new pallet macro (#9796)

* Migrate pallet-session to the new pallet macro

Signed-off-by: koushiro <koushiro.cqx@gmail.com>

* Remove old macros

Signed-off-by: koushiro <koushiro.cqx@gmail.com>

* Fix

Signed-off-by: koushiro <koushiro.cqx@gmail.com>
This commit is contained in:
Qinxuan Chen
2021-09-28 11:12:57 +08:00
committed by GitHub
parent 6ec82c7a83
commit 7f550d6dd2
15 changed files with 314 additions and 266 deletions
+1 -2
View File
@@ -22,8 +22,7 @@ use frame_election_provider_support::{onchain, SortedListProvider};
use frame_support::{
assert_ok, parameter_types,
traits::{
Currency, FindAuthor, GenesisBuild, Get, Hooks, Imbalance, OnInitialize, OnUnbalanced,
OneSessionHandler,
Currency, FindAuthor, GenesisBuild, Get, Hooks, Imbalance, OnUnbalanced, OneSessionHandler,
},
weights::constants::RocksDbWeight,
};
+1 -1
View File
@@ -23,7 +23,7 @@ use frame_support::{
assert_noop, assert_ok,
dispatch::WithPostDispatchInfo,
pallet_prelude::*,
traits::{Currency, Get, OnInitialize, ReservableCurrency},
traits::{Currency, Get, ReservableCurrency},
weights::{extract_actual_weight, GetDispatchInfo},
};
use mock::*;