We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 552fa1b commit 8ac4b83Copy full SHA for 8ac4b83
pallets/admin-utils/src/benchmarking.rs
@@ -1,7 +1,9 @@
1
//! Benchmarking setup
2
#![cfg(feature = "runtime-benchmarks")]
3
#![allow(clippy::arithmetic_side_effects)]
4
-use super::*;
+
5
+extern crate alloc;
6
+use alloc::vec::Vec;
7
8
#[allow(unused)]
9
use crate::Pallet as AdminUtils;
@@ -10,6 +12,8 @@ use frame_benchmarking::v2::*;
10
12
use frame_support::BoundedVec;
11
13
use frame_system::RawOrigin;
14
15
+use super::*;
16
17
#[benchmarks]
18
mod benchmarks {
19
use super::*;
0 commit comments