We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
WeightInfo
1 parent 6f2ad2f commit 071e870Copy full SHA for 071e870
src/tests.rs
@@ -61,6 +61,7 @@ impl frame_system::Trait for Test {
61
type AccountData = pallet_balances::AccountData<u64>;
62
type OnNewAccount = ();
63
type OnKilledAccount = ();
64
+ type SystemWeightInfo = ();
65
}
66
67
parameter_types! {
@@ -72,6 +73,7 @@ impl pallet_balances::Trait for Test {
72
73
type Event = ();
74
type ExistentialDeposit = ExistentialDeposit;
75
type AccountStore = System;
76
+ type WeightInfo = ();
77
78
79
@@ -81,6 +83,7 @@ impl pallet_timestamp::Trait for Test {
81
83
type Moment = u64;
82
84
type OnTimestampSet = ();
85
type MinimumPeriod = MinimumPeriod;
86
87
88
89
/// Fixed gas price of `0`.
0 commit comments