Skip to content

Commit

Permalink
fix: update reputation url
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptobench committed Oct 21, 2024
1 parent 4eb1472 commit 6dcc975
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 6dcc975

Please sign in to comment.