Skip to content

Commit

Permalink
updated clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ManojJiSharma committed Dec 19, 2024
1 parent 3fc23d4 commit a919ac3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chains/ethereum/config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ pub fn config(network: &str) -> anyhow::Result<BlockchainConfig> {
"base-sepolia" => return base_config("fuji"),

// Base
"linea-local" => return base_config("dev"),
"linea" => return base_config("mainnet"),
"linea-sepolia" => return base_config("basu"),
"linea-local" => return linea_config("dev"),
"linea" => return linea_config("mainnet"),
"linea-sepolia" => return linea_config("basu"),

network => return astar_config(network),
};
Expand Down

0 comments on commit a919ac3

Please sign in to comment.