Skip to content

Commit

Permalink
refactor: improve readability
Browse files Browse the repository at this point in the history
  • Loading branch information
crisdut committed Jul 24, 2023
1 parent 0b4d61b commit 5ecc18c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ fn main() -> Result<()> {
.to_ascii_lowercase();

doc.ASSETS_STOCK
.entry(format!("{}-{}", NETWORK, assets_stock_hash))
.entry(format!("{NETWORK}-{assets_stock_hash}"))
.or_insert(assets_stock_name);

doc.ASSETS_WALLETS
.entry(format!("{}-{}", NETWORK, assets_wallets_hash))
.entry(format!("{NETWORK}-{assets_wallets_hash}"))
.or_insert(assets_wallets_name);

let toml = toml::to_string(&doc)?;
Expand Down

0 comments on commit 5ecc18c

Please sign in to comment.