Skip to content

Commit

Permalink
fix: new one
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Mar 29, 2024
1 parent 1c6e8ce commit 21fbfb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/integration-tests/src/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class Helper {
async performBlockExplorerApiGetRequest(apiRoute: string, network?: string) {
if (network === `sepolia`) {
return request(environment.blockExplorerSepoliaAPI).get(apiRoute);
} else if (!network || network === `local`) {
} else if (network === `local`) {
return request(environment.blockExplorerAPI).get(apiRoute);
} else {
throw new Error(`The API route for the network ${network} is undefined.`);
Expand Down

0 comments on commit 21fbfb5

Please sign in to comment.