Skip to content

Commit

Permalink
Merge pull request #1117 from golemfactory/chore/update-reputation-url
Browse files Browse the repository at this point in the history
fix: update reputation url
  • Loading branch information
grisha87 authored Oct 21, 2024
2 parents 4eb1472 + 6dcc975 commit 9e07885
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/experimental/reputation/system.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const DEFAULT_AGREEMENT_WEIGHTS: ReputationWeights = {
* Default reputation service URL.
* @experimental
*/
export const DEFAULT_REPUTATION_URL = "https://reputation.dev-test.golem.network/v2/providers/scores";
export const DEFAULT_REPUTATION_URL = "https://reputation.golem.network/v2/providers/scores";

/**
* The number of top scoring providers to consider when selecting an agreement.
Expand Down
2 changes: 1 addition & 1 deletion src/market/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { GolemInternalError } from "../shared/error/golem-error";
*/
export async function getHealthyProvidersWhiteList(): Promise<string[]> {
try {
const response = await fetch("https://reputation.dev-test.golem.network/v1/provider-whitelist");
const response = await fetch("https://reputation.golem.network/v1/provider-whitelist");

if (response.ok) {
return response.json();
Expand Down

0 comments on commit 9e07885

Please sign in to comment.