From 35adafe572a71de75c6e84df0cff3254ed0dd4eb Mon Sep 17 00:00:00 2001 From: Gavin Wood Date: Sun, 2 May 2021 15:27:50 +0200 Subject: [PATCH] Put BoundedVec in pallet prelude (#8710) --- frame/support/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/frame/support/src/lib.rs b/frame/support/src/lib.rs index 72c90018f755d..12f651cb3daeb 100644 --- a/frame/support/src/lib.rs +++ b/frame/support/src/lib.rs @@ -1238,6 +1238,7 @@ pub mod pallet_prelude { dispatch::{DispatchResultWithPostInfo, Parameter, DispatchError, DispatchResult}, weights::{DispatchClass, Pays, Weight}, storage::types::{StorageValue, StorageMap, StorageDoubleMap, ValueQuery, OptionQuery}, + storage::bounded_vec::{BoundedVec, BoundedVecValue}, }; pub use codec::{Encode, Decode}; pub use sp_inherents::{InherentData, InherentIdentifier, ProvideInherent};