Skip to content

Commit

Permalink
Rename some variables
Browse files Browse the repository at this point in the history
  • Loading branch information
F3Joule committed Jul 6, 2022
1 parent 6e7e32d commit d8592ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pallets/spaces/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,8 @@ pub mod pallet {
Space::<T>::new(id, None, endowed_account.clone(), Content::None, None),
));
}
spaces.iter().for_each(|(k, v)| {
SpaceById::<T>::insert(k, v);
spaces.iter().for_each(|(space_id, space)| {
SpaceById::<T>::insert(space_id, space);
});
}
}
Expand Down

0 comments on commit d8592ad

Please sign in to comment.