From d5967be0e12fafeeec270a75ccd3085a5927306a Mon Sep 17 00:00:00 2001 From: Hugo Trentesaux <hugo@trentesaux.fr> Date: Sun, 4 Sep 2022 15:07:00 +0200 Subject: [PATCH] fix(wot): typo MinCertForCreateIdtyRigh -> MinCertForCreateIdtyRight --- pallets/duniter-wot/src/mock.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pallets/duniter-wot/src/mock.rs b/pallets/duniter-wot/src/mock.rs index d155b350d..d6872196f 100644 --- a/pallets/duniter-wot/src/mock.rs +++ b/pallets/duniter-wot/src/mock.rs @@ -92,14 +92,14 @@ impl system::Config for Test { // DuniterWot parameter_types! { pub const MinCertForMembership: u32 = 2; - pub const MinCertForCreateIdtyRigh: u32 = 4; + pub const MinCertForCreateIdtyRight: u32 = 4; pub const FirstIssuableOn: u64 = 2; } impl pallet_duniter_wot::Config<Instance1> for Test { type IsSubWot = frame_support::traits::ConstBool<false>; type MinCertForMembership = MinCertForMembership; - type MinCertForCreateIdtyRight = MinCertForCreateIdtyRigh; + type MinCertForCreateIdtyRight = MinCertForCreateIdtyRight; type FirstIssuableOn = FirstIssuableOn; } -- GitLab