Skip to content

Commit

Permalink
make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed Jul 26, 2024
1 parent d85dbbe commit add628e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pallets/processor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ pub mod pallet {
T::Regions::lock(&region_id.into(), None)?;
// Even though the region will be owned by the creator, anyone can assign it to the task
// by calling the `assign` extrinsic.
RegionAssignments::<T>::insert(&region_id, order.para_id);
RegionAssignments::<T>::insert(region_id, order.para_id);

let order_account = T::OrderToAccountId::convert(order_id);
let amount = T::Currency::free_balance(&order_account);
Expand Down

0 comments on commit add628e

Please sign in to comment.