mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 13:57:58 +00:00
Adds ability to use default hasher in dev_mode for explicit key binding (#14164)
* Initial setup * Minor update * Minor update * Addresses review comments * Addresses review comments * Updates doc * ".git/.scripts/commands/fmt/fmt.sh" * Renames file * Updates path in test --------- Co-authored-by: command-bot <>
This commit is contained in:
@@ -35,6 +35,15 @@ pub mod pallet {
|
||||
#[pallet::storage]
|
||||
type MyCountedStorageMap<T: Config> = CountedStorageMap<_, _, u32, u64>;
|
||||
|
||||
#[pallet::storage]
|
||||
pub type MyStorageMap2<T: Config> = StorageMap<Key = u32, Value = u64>;
|
||||
|
||||
#[pallet::storage]
|
||||
type MyStorageDoubleMap2<T: Config> = StorageDoubleMap<Key1 = u32, Key2 = u64, Value = u64>;
|
||||
|
||||
#[pallet::storage]
|
||||
type MyCountedStorageMap2<T: Config> = CountedStorageMap<Key = u32, Value = u64>;
|
||||
|
||||
// Your Pallet's callable functions.
|
||||
#[pallet::call]
|
||||
impl<T: Config> Pallet<T> {
|
||||
|
||||
Reference in New Issue
Block a user