Skip to content
Snippets Groups Projects
Unverified Commit c2dd6399 authored by bgallois's avatar bgallois
Browse files

fix pallet-identity benchmarks

parent a4e366da
No related branches found
No related tags found
No related merge requests found
Pipeline #34175 waiting for manual action
...@@ -87,7 +87,7 @@ fn create_dummy_identity<T: Config>(i: u32) -> Result<(), &'static str> { ...@@ -87,7 +87,7 @@ fn create_dummy_identity<T: Config>(i: u32) -> Result<(), &'static str> {
<Identities<T>>::insert(idty_index, value); <Identities<T>>::insert(idty_index, value);
IdentitiesRemovableOn::<T>::append(removable_on, (idty_index, IdtyStatus::Created)); IdentitiesRemovableOn::<T>::append(removable_on, (idty_index, IdtyStatus::Created));
IdentityIndexOf::<T>::insert(owner_key.clone(), idty_index); IdentityIndexOf::<T>::insert(owner_key.clone(), idty_index);
<IdentitiesNames<T>>::insert(idty_name.clone(), ()); <IdentitiesNames<T>>::insert(idty_name.clone(), idty_index);
Ok(()) Ok(())
} }
......
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