From e079cab27392ae8ef222b180d67dcc07b236b597 Mon Sep 17 00:00:00 2001
From: librelois <c@elo.tf>
Date: Tue, 16 Aug 2022 20:46:46 +0200
Subject: [PATCH] fix(runtime): add missing #[pallet::constant] attributes

---
 pallets/duniter-account/src/lib.rs | 2 ++
 pallets/duniter-wot/src/lib.rs     | 4 ++++
 pallets/identity/src/lib.rs        | 1 +
 3 files changed, 7 insertions(+)

diff --git a/pallets/duniter-account/src/lib.rs b/pallets/duniter-account/src/lib.rs
index c6a0fb33a..ea0ab03c8 100644
--- a/pallets/duniter-account/src/lib.rs
+++ b/pallets/duniter-account/src/lib.rs
@@ -54,7 +54,9 @@ pub mod pallet {
         type AccountIdToSalt: Convert<Self::AccountId, [u8; 32]>;
         /// The overarching event type.
         type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;
+        #[pallet::constant]
         type MaxNewAccountsPerBlock: Get<u32>;
+        #[pallet::constant]
         type NewAccountPrice: Get<Self::Balance>;
     }
 
diff --git a/pallets/duniter-wot/src/lib.rs b/pallets/duniter-wot/src/lib.rs
index 919cc9393..1ea7ae1f8 100644
--- a/pallets/duniter-wot/src/lib.rs
+++ b/pallets/duniter-wot/src/lib.rs
@@ -65,9 +65,13 @@ pub mod pallet {
         + pallet_identity::Config<IdtyIndex = IdtyIndex>
         + pallet_membership::Config<I, IdtyId = IdtyIndex>
     {
+        #[pallet::constant]
         type FirstIssuableOn: Get<Self::BlockNumber>;
+        #[pallet::constant]
         type IsSubWot: Get<bool>;
+        #[pallet::constant]
         type MinCertForMembership: Get<u32>;
+        #[pallet::constant]
         type MinCertForCreateIdtyRight: Get<u32>;
     }
 
diff --git a/pallets/identity/src/lib.rs b/pallets/identity/src/lib.rs
index d3d36af60..c8f8b4f43 100644
--- a/pallets/identity/src/lib.rs
+++ b/pallets/identity/src/lib.rs
@@ -72,6 +72,7 @@ pub mod pallet {
         type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;
         /// Management of the authorizations of the different calls. (The default implementation only allows root)
         type EnsureIdtyCallAllowed: EnsureIdtyCallAllowed<Self>;
+        #[pallet::constant]
         /// Minimum duration between the creation of 2 identities by the same creator
         type IdtyCreationPeriod: Get<Self::BlockNumber>;
         /// Custom data to store in each identity
-- 
GitLab