Skip to content

Commit

Permalink
fix:lint
Browse files Browse the repository at this point in the history
  • Loading branch information
anshalshukla committed Feb 17, 2024
1 parent ac46e53 commit 1a47606
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/utils/madara.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,7 @@ pub fn setup_and_run_madara(config: AppChainConfig, flags: &String) -> Result<()
&base_path,
];

args.extend(
flags
.split(",")
.map(|flag| flag.trim())
.filter(|flag| !flag.is_empty())
);
args.extend(flags.split(",").map(|flag| flag.trim()).filter(|flag| !flag.is_empty()));

match config.da_layer {
DALayer::Ethereum => {
Expand Down

0 comments on commit 1a47606

Please sign in to comment.