Skip to content

Commit

Permalink
Chore: forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiTimesChi committed Mar 29, 2024
1 parent e52e8cc commit ca482a6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ abstract contract ConfigureAppV1 is SynapseScript {

function setExecutionService() internal virtual {
printLog("Setting execution service");
address executionService = getDeploymentAddress({contractName: "SynapseExecutionServiceV1", revertIfNotFound: true});
address executionService =
getDeploymentAddress({contractName: "SynapseExecutionServiceV1", revertIfNotFound: true});
if (app.getExecutionService() != executionService) {
app.setExecutionService(executionService);
printSuccessWithIndent(string.concat("Execution service set to ", vm.toString(executionService)));
Expand Down

0 comments on commit ca482a6

Please sign in to comment.