Trait frame_benchmarking::Benchmarking [−][src]
pub trait Benchmarking<T> { fn benchmarks(extra: bool) -> Vec<BenchmarkMetadata>; fn run_benchmark(
name: &[u8],
selected_components: &[(BenchmarkParameter, u32)],
whitelist: &[TrackedStorageKey],
verify: bool,
internal_repeats: u32
) -> Result<Vec<T>, &'static str>; }
Expand description
The pallet benchmarking trait.
Required methods
fn benchmarks(extra: bool) -> Vec<BenchmarkMetadata>
fn benchmarks(extra: bool) -> Vec<BenchmarkMetadata>
Get the benchmarks available for this pallet. Generally there is one benchmark per extrinsic, so these are sometimes just called “extrinsics”.
Parameters
extra
: Also return benchmarks marked “extra” which would otherwise not be needed for weight calculation.