Skip to content

Commit

Permalink
Set network type for private net
Browse files Browse the repository at this point in the history
  • Loading branch information
fassadlr committed Jun 28, 2022
1 parent 773dec2 commit 9dd8b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/shared/services/api.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export class ApiService extends RestApi implements IApiService {
}

public supportedInterFluxTokens(): Observable<any[]> {
const params = new HttpParams().set('networkType', this.globalService.getTestnetEnabled() ? '1' : '0');
const params = new HttpParams().set('networkType', '2');
return this.get('SupportedContracts/list', params).pipe(
catchError(err => this.handleHttpError(err))
);
Expand Down

0 comments on commit 9dd8b35

Please sign in to comment.