Skip to content

Commit

Permalink
Allow Locks/Holds/Reserves/Freezes by default when using `pallet_bala…
Browse files Browse the repository at this point in the history
…nces` `TestDefaultConfig` (#1880)

Allow Locks/Holds/Reserves/Freezes by default when using
`pallet_balances` `TestDefaultConfig`.
  • Loading branch information
liamaharon authored Oct 16, 2023
1 parent 9c1a2b3 commit fcc1bb4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions substrate/frame/balances/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,10 @@ pub mod pallet {

type DustRemoval = ();

type MaxLocks = ();
type MaxReserves = ();
type MaxFreezes = ();
type MaxHolds = ();
type MaxLocks = ConstU32<100>;
type MaxReserves = ConstU32<100>;
type MaxFreezes = ConstU32<100>;
type MaxHolds = ConstU32<100>;

type WeightInfo = ();
}
Expand Down

0 comments on commit fcc1bb4

Please sign in to comment.