Fixed Function

This commit is contained in:
peepopoggers
2021-01-29 16:31:29 +00:00
parent 6d58a65dbe
commit e35a6a5780

View File

@@ -58,7 +58,7 @@ export function getBaseRESTInverseUrl(useLivenet?: boolean, restInverseOptions?:
return baseUrlsInverse.testnet;
}
export function isPublicEndpoint = (endpoint: string): boolean => {
export function isPublicEndpoint (endpoint: string): boolean {
if (endpoint.startsWith('v2/public')) {
return true;
}