Skip to content
This repository has been archived by the owner on Mar 30, 2023. It is now read-only.

Commit

Permalink
Companion for paritytech/cumulus#1793
Browse files Browse the repository at this point in the history
  • Loading branch information
jiguantong committed Jan 3, 2023
1 parent 3c10385 commit 8ba0195
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion runtime/crab/src/pallets/multisig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl pallet_multisig::Config for Runtime {
type DepositBase = ConstU128<{ darwinia_deposit(1, 88) }>;
// Additional storage item size of 32 bytes.
type DepositFactor = ConstU128<{ darwinia_deposit(0, 32) }>;
type MaxSignatories = ConstU16<100>;
type MaxSignatories = ConstU32<100>;
type RuntimeCall = RuntimeCall;
type RuntimeEvent = RuntimeEvent;
type WeightInfo = ();
Expand Down
2 changes: 1 addition & 1 deletion runtime/darwinia/src/pallets/multisig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl pallet_multisig::Config for Runtime {
type DepositBase = ConstU128<{ darwinia_deposit(1, 88) }>;
// Additional storage item size of 32 bytes.
type DepositFactor = ConstU128<{ darwinia_deposit(0, 32) }>;
type MaxSignatories = ConstU16<100>;
type MaxSignatories = ConstU32<100>;
type RuntimeCall = RuntimeCall;
type RuntimeEvent = RuntimeEvent;
type WeightInfo = ();
Expand Down
2 changes: 1 addition & 1 deletion runtime/pangolin/src/pallets/multisig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl pallet_multisig::Config for Runtime {
type DepositBase = ConstU128<{ darwinia_deposit(1, 88) }>;
// Additional storage item size of 32 bytes.
type DepositFactor = ConstU128<{ darwinia_deposit(0, 32) }>;
type MaxSignatories = ConstU16<100>;
type MaxSignatories = ConstU32<100>;
type RuntimeCall = RuntimeCall;
type RuntimeEvent = RuntimeEvent;
type WeightInfo = ();
Expand Down

0 comments on commit 8ba0195

Please sign in to comment.