Skip to content

Commit

Permalink
fix: rebase shenanigans
Browse files Browse the repository at this point in the history
  • Loading branch information
odyslam committed Oct 24, 2023
1 parent 68bd821 commit b2a6c51
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions crates/forge/bin/cmd/script/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl ScriptArgs {
result,
verify,
)
.await
.await;
}

let known_contracts = flatten_contracts(&highlevel_known_contracts, true);
Expand Down Expand Up @@ -120,8 +120,10 @@ impl ScriptArgs {
verify.known_contracts = flatten_contracts(&highlevel_known_contracts, false);
self.check_contract_sizes(&result, &highlevel_known_contracts)?;

self.handle_broadcastable_transactions(result, libraries, &decoder, script_config, verify)
.await
let _ = self
.handle_broadcastable_transactions(result, libraries, &decoder, script_config, verify)
.await?;
Ok(())
}

// In case there are libraries to be deployed, it makes sure that these are added to the list of
Expand Down Expand Up @@ -157,7 +159,7 @@ impl ScriptArgs {
&flatten_contracts(&highlevel_known_contracts, true),
)?;

return Ok(Some((new_traces, libraries, highlevel_known_contracts)))
return Ok(Some((new_traces, libraries, highlevel_known_contracts)));
}

// Add predeploy libraries to the list of broadcastable transactions.
Expand Down Expand Up @@ -204,7 +206,7 @@ impl ScriptArgs {
result.script_wallets,
verify,
)
.await
.await;
}
self.resume_single_deployment(
script_config,
Expand Down

0 comments on commit b2a6c51

Please sign in to comment.