1c0e57d984
This commit systematically rebrands various references from Parity Technologies' Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk. Key changes include: - Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks. - Modified internal documentation and code comments to reflect PezkuwiChain naming and structure. - Replaced direct references to with or specific paths within the for XCM, Pezkuwi, and other modules. - Cleaned up deprecated issue and PR references in various and files, particularly in and modules. - Adjusted image and logo URLs in documentation to point to PezkuwiChain assets. - Removed or rephrased comments related to external Polkadot/Substrate PRs and issues. This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
94 lines
2.4 KiB
Rust
94 lines
2.4 KiB
Rust
// This file is part of Bizinikiwi.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use criterion::{black_box, criterion_group, criterion_main, Criterion};
|
|
use pezframe_support::derive_impl;
|
|
use pezsp_runtime::{BuildStorage, Perbill};
|
|
#[pezframe_support::pallet]
|
|
mod module {
|
|
use pezframe_support::pezpallet_prelude::*;
|
|
|
|
#[pallet::pallet]
|
|
pub struct Pallet<T>(_);
|
|
|
|
#[pallet::config]
|
|
pub trait Config: pezframe_system::Config {
|
|
#[allow(deprecated)]
|
|
type RuntimeEvent: From<Event> + IsType<<Self as pezframe_system::Config>::RuntimeEvent>;
|
|
}
|
|
|
|
#[pallet::event]
|
|
#[pallet::generate_deposit(pub(super) fn deposit_event)]
|
|
pub enum Event {
|
|
Complex(Vec<u8>, u32, u16, u128),
|
|
}
|
|
}
|
|
|
|
type Block = pezframe_system::mocking::MockBlock<Runtime>;
|
|
|
|
pezframe_support::construct_runtime!(
|
|
pub enum Runtime {
|
|
System: pezframe_system,
|
|
Module: module,
|
|
}
|
|
);
|
|
|
|
pezframe_support::parameter_types! {
|
|
pub BlockLength: pezframe_system::limits::BlockLength =
|
|
pezframe_system::limits::BlockLength::max_with_normal_ratio(
|
|
4 * 1024 * 1024, Perbill::from_percent(75),
|
|
);
|
|
}
|
|
|
|
#[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)]
|
|
impl pezframe_system::Config for Runtime {
|
|
type Nonce = u64;
|
|
type Block = Block;
|
|
}
|
|
|
|
impl module::Config for Runtime {
|
|
type RuntimeEvent = RuntimeEvent;
|
|
}
|
|
|
|
fn new_test_ext() -> pezsp_io::TestExternalities {
|
|
pezframe_system::GenesisConfig::<Runtime>::default()
|
|
.build_storage()
|
|
.unwrap()
|
|
.into()
|
|
}
|
|
|
|
fn deposit_events(n: usize) {
|
|
let mut t = new_test_ext();
|
|
t.execute_with(|| {
|
|
for _ in 0..n {
|
|
module::Pallet::<Runtime>::deposit_event(module::Event::Complex(
|
|
vec![1, 2, 3],
|
|
2,
|
|
3,
|
|
899,
|
|
));
|
|
}
|
|
});
|
|
}
|
|
|
|
fn sr_system_benchmark(c: &mut Criterion) {
|
|
c.bench_function("deposit 100 events", |b| b.iter(|| deposit_events(black_box(100))));
|
|
}
|
|
|
|
criterion_group!(benches, sr_system_benchmark);
|
|
criterion_main!(benches);
|