Skip to content

Commit c517629

Browse files
authored
Add WeightInfo to all pallets with benchmarks. (#6575)
* Start adding weight info * More weightinfo * finish weight info * more fixes * inital update of node runtime * fix the rest of the compilation * update balances * add docs * fix balances tests * Fix more tests * Fix compile * Fix pallet-evm tests
1 parent 3a701ce commit c517629

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ mod tests {
290290
type AccountData = pallet_balances::AccountData<u64>;
291291
type OnNewAccount = ();
292292
type OnKilledAccount = ();
293+
type SystemWeightInfo = ();
293294
}
294295
parameter_types! {
295296
pub const ExistentialDeposit: u64 = 1;
@@ -300,6 +301,7 @@ mod tests {
300301
type DustRemoval = ();
301302
type ExistentialDeposit = ExistentialDeposit;
302303
type AccountStore = System;
304+
type WeightInfo = ();
303305
}
304306
parameter_types! {
305307
pub const ReservationFee: u64 = 2;

0 commit comments

Comments
 (0)