From 2f953b50280434709c1763fa4b4d35c88580be3b Mon Sep 17 00:00:00 2001 From: bgallois <benjamin@gallois.cc> Date: Thu, 21 Mar 2024 14:14:45 +0100 Subject: [PATCH] fix tests --- pallets/authority-members/src/mock.rs | 5 +++++ pallets/certification/src/mock.rs | 5 +++++ pallets/distance/src/mock.rs | 5 +++++ pallets/duniter-wot/src/mock.rs | 5 +++++ pallets/identity/src/mock.rs | 5 +++++ pallets/membership/src/mock.rs | 5 +++++ pallets/offences/src/mock.rs | 5 +++++ pallets/oneshot-account/src/mock.rs | 5 +++++ pallets/quota/src/mock.rs | 5 +++++ pallets/smith-members/src/mock.rs | 5 +++++ pallets/universal-dividend/src/lib.rs | 2 +- pallets/universal-dividend/src/mock.rs | 5 +++++ runtime/gdev/tests/offences_tests.rs | 6 +++--- 13 files changed, 59 insertions(+), 4 deletions(-) diff --git a/pallets/authority-members/src/mock.rs b/pallets/authority-members/src/mock.rs index f4d412df5..34b26a922 100644 --- a/pallets/authority-members/src/mock.rs +++ b/pallets/authority-members/src/mock.rs @@ -75,16 +75,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/certification/src/mock.rs b/pallets/certification/src/mock.rs index 066753f25..7f24b214b 100644 --- a/pallets/certification/src/mock.rs +++ b/pallets/certification/src/mock.rs @@ -56,16 +56,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/distance/src/mock.rs b/pallets/distance/src/mock.rs index 86337cce6..5d6813516 100644 --- a/pallets/distance/src/mock.rs +++ b/pallets/distance/src/mock.rs @@ -81,16 +81,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/duniter-wot/src/mock.rs b/pallets/duniter-wot/src/mock.rs index 0a442ac5d..d9ebcb180 100644 --- a/pallets/duniter-wot/src/mock.rs +++ b/pallets/duniter-wot/src/mock.rs @@ -69,16 +69,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/identity/src/mock.rs b/pallets/identity/src/mock.rs index 8a887b008..81a0dc356 100644 --- a/pallets/identity/src/mock.rs +++ b/pallets/identity/src/mock.rs @@ -68,16 +68,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/membership/src/mock.rs b/pallets/membership/src/mock.rs index 5fb5d29ec..2d27a0d79 100644 --- a/pallets/membership/src/mock.rs +++ b/pallets/membership/src/mock.rs @@ -57,16 +57,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/offences/src/mock.rs b/pallets/offences/src/mock.rs index 11b2b4109..76fb2218f 100644 --- a/pallets/offences/src/mock.rs +++ b/pallets/offences/src/mock.rs @@ -76,16 +76,21 @@ impl frame_system::Config for Runtime { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = (); + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/oneshot-account/src/mock.rs b/pallets/oneshot-account/src/mock.rs index d6c18c736..cddd7e006 100644 --- a/pallets/oneshot-account/src/mock.rs +++ b/pallets/oneshot-account/src/mock.rs @@ -57,16 +57,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/quota/src/mock.rs b/pallets/quota/src/mock.rs index b5fa5311f..06aa1acbe 100644 --- a/pallets/quota/src/mock.rs +++ b/pallets/quota/src/mock.rs @@ -91,16 +91,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/smith-members/src/mock.rs b/pallets/smith-members/src/mock.rs index 2e7ddf15b..3669161b5 100644 --- a/pallets/smith-members/src/mock.rs +++ b/pallets/smith-members/src/mock.rs @@ -57,16 +57,21 @@ impl frame_system::Config for Runtime { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = (); + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/pallets/universal-dividend/src/lib.rs b/pallets/universal-dividend/src/lib.rs index a360fbdf4..9eb12eb1b 100644 --- a/pallets/universal-dividend/src/lib.rs +++ b/pallets/universal-dividend/src/lib.rs @@ -181,7 +181,7 @@ pub mod pallet { initial_monetary_mass: Default::default(), #[cfg(test)] initial_members: Default::default(), - ud: Default::default(), + ud: BalanceOf::<T>::one(), } } } diff --git a/pallets/universal-dividend/src/mock.rs b/pallets/universal-dividend/src/mock.rs index 55cafb5be..dbe776de2 100644 --- a/pallets/universal-dividend/src/mock.rs +++ b/pallets/universal-dividend/src/mock.rs @@ -64,16 +64,21 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type Lookup = IdentityLookup<Self::AccountId>; type MaxConsumers = frame_support::traits::ConstU32<16>; + type MultiBlockMigrator = (); type Nonce = u64; type OnKilledAccount = (); type OnNewAccount = (); type OnSetCode = (); type PalletInfo = PalletInfo; + type PostInherents = (); + type PostTransactions = (); + type PreInherents = (); type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type RuntimeTask = (); type SS58Prefix = SS58Prefix; + type SingleBlockMigrations = (); type SystemWeightInfo = (); type Version = (); } diff --git a/runtime/gdev/tests/offences_tests.rs b/runtime/gdev/tests/offences_tests.rs index 25f8f63ae..fbfbb9d30 100644 --- a/runtime/gdev/tests/offences_tests.rs +++ b/runtime/gdev/tests/offences_tests.rs @@ -44,7 +44,7 @@ fn test_imonline_offence() { .map(|full_id| (id, full_id)) }) .collect::<Vec<IdentificationTuple<Runtime>>>(); - let keys = ImOnline::keys(); + let keys = pallet_im_online::Keys::<Runtime>::get(); let validator_set_count = keys.len() as u32; let offence = UnresponsivenessOffence { session_index, @@ -86,7 +86,7 @@ fn test_grandpa_offence() { .map(|full_id| (id, full_id)) }) .collect::<Vec<IdentificationTuple<Runtime>>>(); - let keys = ImOnline::keys(); + let keys = pallet_im_online::Keys::<Runtime>::get(); let validator_set_count = keys.len() as u32; let time_slot = pallet_grandpa::TimeSlot { set_id: 0, @@ -131,7 +131,7 @@ fn test_babe_offence() { .map(|full_id| (id, full_id)) }) .collect::<Vec<IdentificationTuple<Runtime>>>(); - let keys = ImOnline::keys(); + let keys = pallet_im_online::Keys::<Runtime>::get(); let validator_set_count = keys.len() as u32; let offence = pallet_babe::EquivocationOffence { slot: 0u64.into(), -- GitLab