Make Multisig Pallet Bounded (#12457)

* Bounded multisig

* just use u32

Co-authored-by: parity-processbot <>
This commit is contained in:
Shawn Tabrizi
2022-10-25 14:34:20 -04:00
committed by GitHub
parent 9375665218
commit e475638827
5 changed files with 31 additions and 21 deletions
+1 -1
View File
@@ -249,7 +249,7 @@ impl pallet_multisig::Config for Runtime {
type Currency = Balances;
type DepositBase = DepositBase;
type DepositFactor = DepositFactor;
type MaxSignatories = ConstU16<100>;
type MaxSignatories = ConstU32<100>;
type WeightInfo = pallet_multisig::weights::SubstrateWeight<Runtime>;
}