Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Karrq committed Jan 24, 2025
1 parent dec820b commit eea5fb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/evm/evm/src/executors/strategy/libraries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ impl EvmExecutorStrategyRunner {
let Some(abi) = &contract.abi else { continue };

// if it's a test, link it and add to deployable contracts
if abi.constructor.as_ref().map(|c| c.inputs.is_empty()).unwrap_or(true)
&& abi.functions().any(|func| func.name.is_any_test())
if abi.constructor.as_ref().map(|c| c.inputs.is_empty()).unwrap_or(true) &&
abi.functions().any(|func| func.name.is_any_test())
{
let Some(bytecode) =
contract.get_bytecode_bytes().map(|b| b.into_owned()).filter(|b| !b.is_empty())
Expand Down

0 comments on commit eea5fb8

Please sign in to comment.