mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-21 07:31:03 +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 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 = ();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user