Skip to content

Commit

Permalink
fixed leak crate-private type
Browse files Browse the repository at this point in the history
Signed-off-by: muraca <mmuraca247@gmail.com>
  • Loading branch information
muraca committed Sep 29, 2023
1 parent 3953635 commit 17a1a62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions substrate/frame/assets/src/migration/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

use crate::{Account, Asset, AssetDetails, AssetStatus, Config, DepositBalanceOf, Pallet};
use crate::{Account, Asset, AssetDetails, AssetStatus, Config, DepositBalanceOf, Pallet, Vec};
use frame_support::{
pallet_prelude::*,
sp_runtime::traits::{Saturating, Zero},
Expand All @@ -31,7 +31,7 @@ pub mod old {

#[frame_support::storage_alias]
/// Details of an asset.
pub type Asset<T: Config<I>, I: 'static> = StorageMap<
pub(crate) type Asset<T: Config<I>, I: 'static> = StorageMap<
Pallet<T, I>,
Blake2_128Concat,
<T as Config<I>>::AssetId,
Expand Down

0 comments on commit 17a1a62

Please sign in to comment.