Skip to content
This repository was archived by the owner on May 30, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion duster/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-duster"
version = "3.2.1"
version = "3.2.2"
description = "Account duster"
authors = ["GalacticCouncil"]
edition = "2021"
Expand Down
5 changes: 5 additions & 0 deletions duster/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ pub mod pallet {
use frame_support::sp_runtime::traits::AtLeast32BitUnsigned;
use frame_system::pallet_prelude::{BlockNumberFor, OriginFor};

/// The current storage version.
const STORAGE_VERSION: StorageVersion = StorageVersion::new(1);

#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
#[pallet::storage_version(STORAGE_VERSION)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_);

Expand Down
1 change: 0 additions & 1 deletion duster/src/migration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ use crate::Config;
use frame_support::weights::Weight;
use sp_std::vec::Vec;

/// Storage names are changed from Classes to Collections and from Instances to Items.
pub mod v1 {
use super::*;
use frame_support::log;
Expand Down