Skip to content

Commit

Permalink
fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kkast committed Jun 30, 2023
1 parent 2c901cf commit 278e0b8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion code/parachain/frame/assets-registry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,15 @@ pub mod pallet {
let existential_deposit =
ExistentialDeposit::<T>::get(asset_id).unwrap_or_default();

Asset { name, symbol, id: asset_id, decimals, ratio, foreign_id, existential_deposit }
Asset {
name,
symbol,
id: asset_id,
decimals,
ratio,
foreign_id,
existential_deposit,
}
})
.collect::<Vec<_>>()
}
Expand Down

0 comments on commit 278e0b8

Please sign in to comment.