From 8c65e5df3622ccb2dbd83d3aaec6ee9318fc7f17 Mon Sep 17 00:00:00 2001
From: Gavin Wood <gavin@parity.io>
Date: Sun, 2 May 2021 15:27:50 +0200
Subject: [PATCH] Put BoundedVec in pallet prelude (#8710)

---
 substrate/frame/support/src/lib.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/substrate/frame/support/src/lib.rs b/substrate/frame/support/src/lib.rs
index 72c90018f75..12f651cb3da 100644
--- a/substrate/frame/support/src/lib.rs
+++ b/substrate/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};
-- 
GitLab