Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevcs committed Oct 11, 2023
1 parent 9faa965 commit 048d0f4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/system_tests_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const getSystemTestProvider = <API extends Web3APISpec = Web3EthExecution
if (url.includes('ipc')) {
return new IpcProvider<API>(url);

} else if (url.includes('ws')) {
} if (url.includes('ws')) {

const reconnectionOptions = {
delay: 100,
Expand All @@ -91,8 +91,9 @@ export const getSystemTestProvider = <API extends Web3APISpec = Web3EthExecution
};

return new WebSocketProvider<API>(url, {}, reconnectionOptions);
}
return url;
}

return url;
};

export const getSystemTestEngine = (): string =>
Expand Down

0 comments on commit 048d0f4

Please sign in to comment.