Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ mod dip_did_proof_with_verified_relay_state_root {
type Hash = H256;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl frame_system::Config for TestRuntime {
type Hash = H256;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion pallets/attestation/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ pub(crate) mod runtime {
type BlockLength = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

parameter_types! {
Expand Down
2 changes: 1 addition & 1 deletion pallets/ctype/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ pub mod runtime {
type BlockLength = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

parameter_types! {
Expand Down
2 changes: 1 addition & 1 deletion pallets/delegation/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ pub(crate) mod runtime {
type BlockLength = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

parameter_types! {
Expand Down
2 changes: 1 addition & 1 deletion pallets/did/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl frame_system::Config for Test {
type BlockLength = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

parameter_types! {
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-asset-switch/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl frame_system::Config for MockRuntime {
type Hash = H256;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-bonded-coins/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ pub mod runtime {
type Hash = Hash;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-configuration/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ pub mod runtime {
type BlockLength = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

parameter_types! {
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-deposit-storage/src/deposit/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl frame_system::Config for TestRuntime {
type Hash = H256;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-deposit-storage/src/fungible/tests/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl frame_system::Config for TestRuntime {
type Hash = H256;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-deposit-storage/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl frame_system::Config for TestRuntime {
type Hash = H256;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-did-lookup/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl frame_system::Config for Test {
type SystemWeightInfo = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

parameter_types! {
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-dip-consumer/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl frame_system::Config for TestRuntime {
type Hash = H256;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-dip-provider/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl frame_system::Config for TestRuntime {
type Hash = H256;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-inflation/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl frame_system::Config for Test {
type SystemWeightInfo = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

parameter_types! {
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-migration/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ impl frame_system::Config for Test {
type BlockLength = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

parameter_types! {
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-relay-store/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl frame_system::Config for TestRuntime {
type Hash = H256;
type Hashing = BlakeTwo256;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = u64;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-web3-names/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pub(crate) mod runtime {
type SystemWeightInfo = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
type RuntimeTask = RuntimeTask;
}

Expand Down
2 changes: 1 addition & 1 deletion pallets/parachain-staking/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ impl frame_system::Config for Test {
type BlockLength = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}
parameter_types! {
pub const ExistentialDeposit: Balance = 1;
Expand Down
2 changes: 1 addition & 1 deletion pallets/public-credentials/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ pub(crate) mod runtime {
type BlockLength = ();
type SS58Prefix = ConstU16<38>;
type OnSetCode = ();
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
}

impl pallet_balances::Config for Test {
Expand Down
2 changes: 1 addition & 1 deletion runtimes/common/src/dip/deposit/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl frame_system::Config for TestRuntime {
type Hash = Hash;
type Hashing = Hasher;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = Nonce;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion runtimes/common/src/dip/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl frame_system::Config for TestRuntime {
type Hash = Hash;
type Hashing = Hasher;
type Lookup = IdentityLookup<Self::AccountId>;
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
type Nonce = Nonce;
type OnKilledAccount = ();
type OnNewAccount = ();
Expand Down
2 changes: 1 addition & 1 deletion runtimes/common/src/fees.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ mod tests {
type SystemWeightInfo = ();
type SS58Prefix = ();
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

impl pallet_balances::Config for Test {
Expand Down
2 changes: 1 addition & 1 deletion runtimes/kestrel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl frame_system::Config for Runtime {
type SS58Prefix = SS58Prefix;
/// The set code logic, just the default since we're not a parachain.
type OnSetCode = ();
type MaxConsumers = ConstU32<16>;
type MaxConsumers = ConstU32<100>;
}

/// Maximum number of nominators per validator.
Expand Down
2 changes: 1 addition & 1 deletion runtimes/peregrine/src/system/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl frame_system::Config for Runtime {
type SS58Prefix = ConstU16<SS_58_PREFIX>;
/// The set code logic
type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Runtime>;
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

impl pallet_timestamp::Config for Runtime {
Expand Down
2 changes: 1 addition & 1 deletion runtimes/spiritnet/src/system/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl frame_system::Config for Runtime {
type SS58Prefix = ConstU16<SS_58_PREFIX>;
/// The set code logic
type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Runtime>;
type MaxConsumers = frame_support::traits::ConstU32<16>;
type MaxConsumers = frame_support::traits::ConstU32<100>;
}

impl pallet_timestamp::Config for Runtime {
Expand Down
Loading