Skip to content
Snippets Groups Projects

Distance pallet benchmark

All threads resolved!
8 files
+ 246
17
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -45,7 +45,7 @@ pub const MAX_EVALUATIONS_PER_SESSION: u32 = 600;
/// Maximum number of evaluators in a session
pub const MAX_EVALUATORS_PER_SESSION: u32 = 100;
#[frame_support::pallet(dev_mode)] // dev mode while waiting for benchmarks
#[frame_support::pallet()]
pub mod pallet {
use super::*;
use frame_support::{pallet_prelude::*, traits::ReservableCurrency};
@@ -56,7 +56,6 @@ pub mod pallet {
const STORAGE_VERSION: StorageVersion = StorageVersion::new(1);
#[pallet::pallet]
// #[pallet::generate_store(pub(super) trait Store)] // deprecated
#[pallet::storage_version(STORAGE_VERSION)]
#[pallet::without_storage_info]
pub struct Pallet<T>(PhantomData<T>);
@@ -78,7 +77,7 @@ pub mod pallet {
/// Number of session to keep a positive evaluation result
type ResultExpiration: Get<u32>;
// /// Type representing the weight of this pallet
// type WeightInfo: WeightInfo;
type WeightInfo: WeightInfo;
}
// STORAGE //
@@ -182,8 +181,7 @@ pub mod pallet {
/// dummy `on_initialize` to return the weight used in `on_finalize`.
fn on_initialize(_n: BlockNumberFor<T>) -> Weight {
// weight of `on_finalize`
//T::WeightInfo::on_finalize()// TODO uncomment when benchmarking
Weight::zero()
<T as pallet::Config>::WeightInfo::on_finalize()
}
/// # <weight>
@@ -201,8 +199,7 @@ pub mod pallet {
impl<T: Config> Pallet<T> {
/// Request an identity to be evaluated
#[pallet::call_index(0)]
#[pallet::weight(0)]
// #[pallet::weight(T::WeightInfo::request_distance_evaluation())]
#[pallet::weight(<T as pallet::Config>::WeightInfo::request_distance_evaluation())]
pub fn request_distance_evaluation(origin: OriginFor<T>) -> DispatchResultWithPostInfo {
let who = ensure_signed(origin)?;
@@ -220,8 +217,7 @@ pub mod pallet {
/// (Inherent) Push an evaluation result to the pool
#[pallet::call_index(1)]
#[pallet::weight(0)]
// #[pallet::weight(T::WeightInfo::update_evaluation())]
#[pallet::weight(<T as pallet::Config>::WeightInfo::update_evaluation(MAX_EVALUATIONS_PER_SESSION))]
pub fn update_evaluation(
origin: OriginFor<T>,
computation_result: ComputationResult,
@@ -241,8 +237,7 @@ pub mod pallet {
/// Push an evaluation result to the pool
#[pallet::call_index(2)]
#[pallet::weight(0)]
// #[pallet::weight(T::WeightInfo::force_update_evaluation())]
#[pallet::weight(<T as pallet::Config>::WeightInfo::force_update_evaluation(MAX_EVALUATIONS_PER_SESSION))]
pub fn force_update_evaluation(
origin: OriginFor<T>,
evaluator: <T as frame_system::Config>::AccountId,
@@ -261,8 +256,7 @@ pub mod pallet {
/// when the evaluation completes.
/// * `status.1` is the status of the evaluation.
#[pallet::call_index(3)]
#[pallet::weight(0)]
// #[pallet::weight(T::WeightInfo::force_set_distance_status())]
#[pallet::weight(<T as pallet::Config>::WeightInfo::force_set_distance_status())]
pub fn force_set_distance_status(
origin: OriginFor<T>,
identity: <T as pallet_identity::Config>::IdtyIndex,
Loading