Companion for #6575 (Add WeightInfo) (#1352)

* Add `WeightInfo`

* fix test

* fix tests

* fix more tests
This commit is contained in:
Shawn Tabrizi
2020-07-08 18:22:22 +02:00
committed by GitHub
parent 283ffd4ec4
commit 099e41dc9e
11 changed files with 82 additions and 1 deletions
+14
View File
@@ -137,6 +137,7 @@ impl system::Trait for Runtime {
type AccountData = balances::AccountData<Balance>;
type OnNewAccount = ();
type OnKilledAccount = ();
type SystemWeightInfo = ();
}
impl scheduler::Trait for Runtime {
@@ -146,6 +147,7 @@ impl scheduler::Trait for Runtime {
type Call = Call;
type MaximumWeight = MaximumBlockWeight;
type ScheduleOrigin = EnsureRoot<AccountId>;
type WeightInfo = ();
}
parameter_types! {
@@ -185,6 +187,7 @@ impl indices::Trait for Runtime {
type Currency = Balances;
type Deposit = IndexDeposit;
type Event = Event;
type WeightInfo = ();
}
parameter_types! {
@@ -197,6 +200,7 @@ impl balances::Trait for Runtime {
type Event = Event;
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type WeightInfo = ();
}
parameter_types! {
@@ -218,6 +222,7 @@ impl timestamp::Trait for Runtime {
type Moment = u64;
type OnTimestampSet = Babe;
type MinimumPeriod = MinimumPeriod;
type WeightInfo = ();
}
parameter_types! {
@@ -261,6 +266,7 @@ impl session::Trait for Runtime {
type SessionHandler = <SessionKeys as OpaqueKeys>::KeyTypeIdProviders;
type Keys = SessionKeys;
type DisabledValidatorsThreshold = DisabledValidatorsThreshold;
type WeightInfo = ();
}
impl session::historical::Trait for Runtime {
@@ -316,6 +322,7 @@ impl staking::Trait for Runtime {
type UnsignedPriority = StakingUnsignedPriority;
type MaxIterations = MaxIterations;
type MinSolutionScoreBump = MinSolutionScoreBump;
type WeightInfo = ();
}
parameter_types! {
@@ -339,6 +346,7 @@ impl offences::Trait for Runtime {
type IdentificationTuple = session::historical::IdentificationTuple<Self>;
type OnOffenceHandler = Staking;
type WeightSoftLimit = OffencesWeightSoftLimit;
type WeightInfo = ();
}
impl authority_discovery::Trait for Runtime {}
@@ -358,6 +366,7 @@ impl im_online::Trait for Runtime {
type ReportUnresponsiveness = Offences;
type SessionDuration = SessionDuration;
type UnsignedPriority = StakingUnsignedPriority;
type WeightInfo = ();
}
impl grandpa::Trait for Runtime {
@@ -530,11 +539,13 @@ impl identity::Trait for Runtime {
type MaxRegistrars = MaxRegistrars;
type RegistrarOrigin = system::EnsureRoot<AccountId>;
type ForceOrigin = system::EnsureRoot<AccountId>;
type WeightInfo = ();
}
impl utility::Trait for Runtime {
type Event = Event;
type Call = Call;
type WeightInfo = ();
}
parameter_types! {
@@ -552,6 +563,7 @@ impl multisig::Trait for Runtime {
type DepositBase = DepositBase;
type DepositFactor = DepositFactor;
type MaxSignatories = MaxSignatories;
type WeightInfo = ();
}
parameter_types! {
@@ -580,6 +592,7 @@ impl vesting::Trait for Runtime {
type Currency = Balances;
type BlockNumberToBalance = ConvertInto;
type MinVestedTransfer = MinVestedTransfer;
type WeightInfo = ();
}
impl sudo::Trait for Runtime {
@@ -679,6 +692,7 @@ impl proxy::Trait for Runtime {
type ProxyDepositBase = ProxyDepositBase;
type ProxyDepositFactor = ProxyDepositFactor;
type MaxProxies = MaxProxies;
type WeightInfo = ();
}
construct_runtime! {