diff --git a/frame/uniques/src/lib.rs b/frame/uniques/src/lib.rs index da0f0e0560674..b6905c82c8b26 100644 --- a/frame/uniques/src/lib.rs +++ b/frame/uniques/src/lib.rs @@ -162,7 +162,7 @@ pub mod pallet { } #[pallet::storage] - #[pallet::storage_prefix = "Class"] + #[pallet::storage_prefix = "Collection"] /// Details of a collection. pub(super) type Collection, I: 'static = ()> = StorageMap< _, @@ -191,7 +191,7 @@ pub mod pallet { >; #[pallet::storage] - #[pallet::storage_prefix = "ClassAccount"] + #[pallet::storage_prefix = "CollectionAccount"] /// The collections owned by any given account; set out this way so that collections owned by /// a single account can be enumerated. pub(super) type CollectionAccount, I: 'static = ()> = StorageDoubleMap< @@ -218,7 +218,7 @@ pub mod pallet { >; #[pallet::storage] - #[pallet::storage_prefix = "ClassMetadataOf"] + #[pallet::storage_prefix = "CollectionMetadataOf"] /// Metadata of a collection. pub(super) type CollectionMetadataOf, I: 'static = ()> = StorageMap< _, @@ -229,7 +229,7 @@ pub mod pallet { >; #[pallet::storage] - #[pallet::storage_prefix = "InstanceMetadataOf"] + #[pallet::storage_prefix = "MetadataOf"] /// Metadata of an item. pub(super) type ItemMetadataOf, I: 'static = ()> = StorageDoubleMap< _,