Skip to content

Commit

Permalink
Fixing getSequenceIndexerGateway url (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook authored Jan 8, 2025
1 parent 86991af commit bf16e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/auth/src/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export class Services {
async getIndexerGateway(tryAuth: boolean = true): Promise<SequenceIndexerGateway> {
if (!this.indexerGateway) {
const jwtAuth = (await this.getJWT(tryAuth)).token
this.indexerGateway = new SequenceIndexerGateway(this.settings.sequenceMetadataUrl, undefined, jwtAuth)
this.indexerGateway = new SequenceIndexerGateway(this.settings.sequenceIndexerGatewayUrl, undefined, jwtAuth)
}

return this.indexerGateway
Expand Down

0 comments on commit bf16e7a

Please sign in to comment.