mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-26 15:51:08 +00:00
3d6329a22d
* Benchmark pallet * Add a bunch more benchmarks * do nothing test * new benchmarks * Clean up extra tests * Encode and Decode Vec<T::AccountId> * Starting to migrate benchmarks to macro * Use macro * Remove call and storage * Update Cargo.toml * Add storage recalc benchmark * Add support for custom functions in benchmark! macro * Reset DB for storage recalc * Feedback from review * Add more comments * Remove benchmark pallet from node * Fix cargo files * Fix comments * Change `crate` to `super` * missed one * Use results of benchmark encode/decode * Pass generic to extra functions * reset macro to master * Update lib.rs * Update to use standard syntax
37 lines
1001 B
Rust
37 lines
1001 B
Rust
// Copyright 2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Substrate is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Timestamp pallet benchmarking.
|
|
|
|
use super::*;
|
|
|
|
use sp_std::prelude::*;
|
|
|
|
use frame_system::RawOrigin;
|
|
use frame_benchmarking::benchmarks;
|
|
|
|
const MAX_TIME: u32 = 100;
|
|
|
|
benchmarks! {
|
|
_ {
|
|
let n in 1 .. MAX_TIME => ();
|
|
}
|
|
|
|
set {
|
|
let n in ...;
|
|
}: _(RawOrigin::None, n.into())
|
|
}
|