mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 11:57:56 +00:00
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:
@@ -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 = ();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user