Allow Locks/Holds/Reserves/Freezes by default when using pallet_balances TestDefaultConfig (#1880)

Allow Locks/Holds/Reserves/Freezes by default when using
`pallet_balances` `TestDefaultConfig`.
This commit is contained in:
Liam Aharon
2023-10-17 08:06:03 +11:00
committed by GitHub
parent 9c1a2b38e5
commit fcc1bb414b
+4 -4
View File
@@ -238,10 +238,10 @@ pub mod pallet {
type DustRemoval = (); type DustRemoval = ();
type MaxLocks = (); type MaxLocks = ConstU32<100>;
type MaxReserves = (); type MaxReserves = ConstU32<100>;
type MaxFreezes = (); type MaxFreezes = ConstU32<100>;
type MaxHolds = (); type MaxHolds = ConstU32<100>;
type WeightInfo = (); type WeightInfo = ();
} }