Skip to content
Snippets Groups Projects
Commit 9d41de64 authored by Liu-Cheng Xu's avatar Liu-Cheng Xu Committed by GitHub
Browse files

Add missing CountedStorageMap in pallet::storage error info (#12356)

parent 1f687256
Branches
No related merge requests found
......@@ -555,8 +555,8 @@ fn process_generics(
found => {
let msg = format!(
"Invalid pallet::storage, expected ident: `StorageValue` or \
`StorageMap` or `StorageDoubleMap` or `StorageNMap` in order to expand metadata, \
found `{}`.",
`StorageMap` or `CountedStorageMap` or `StorageDoubleMap` or `StorageNMap` \
in order to expand metadata, found `{}`.",
found,
);
return Err(syn::Error::new(segment.ident.span(), msg))
......
error: Invalid pallet::storage, expected ident: `StorageValue` or `StorageMap` or `StorageDoubleMap` or `StorageNMap` in order to expand metadata, found `u8`.
error: Invalid pallet::storage, expected ident: `StorageValue` or `StorageMap` or `CountedStorageMap` or `StorageDoubleMap` or `StorageNMap` in order to expand metadata, found `u8`.
--> $DIR/storage_not_storage_type.rs:19:16
|
19 | type Foo<T> = u8;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment