Skip to content
Snippets Groups Projects
Unverified Commit 25db9ed7 authored by Shaun Wang's avatar Shaun Wang Committed by GitHub
Browse files

Remove nonces from oracle pallet. (#413)

parent 918da400
No related branches found
No related tags found
No related merge requests found
...@@ -139,10 +139,6 @@ pub mod module { ...@@ -139,10 +139,6 @@ pub mod module {
#[pallet::getter(fn members)] #[pallet::getter(fn members)]
pub type Members<T: Config<I>, I: 'static = ()> = StorageValue<_, OrderedSet<T::AccountId>, ValueQuery>; pub type Members<T: Config<I>, I: 'static = ()> = StorageValue<_, OrderedSet<T::AccountId>, ValueQuery>;
#[pallet::storage]
#[pallet::getter(fn nonces)]
pub type Nonces<T: Config<I>, I: 'static = ()> = StorageMap<_, Twox64Concat, T::AccountId, u32>;
#[pallet::genesis_config] #[pallet::genesis_config]
pub struct GenesisConfig<T: Config<I>, I: 'static = ()> { pub struct GenesisConfig<T: Config<I>, I: 'static = ()> {
pub members: OrderedSet<T::AccountId>, pub members: OrderedSet<T::AccountId>,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment