diff --git a/README.md b/README.md index 9abc490..fc4fea9 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Before you begin, you need to install the following tools: - [nargo](https://noir-lang.org/getting_started/nargo_installation#installation) ### Running -The project requires four processes to run. They are referred to as terminals below. Once all processes are started the population of the DB will start. After a couple of minutes you can go to http://localhost:3000/leaderboards and explore the UI. +The project requires four processes to run. They are referred to as terminals below. Once all processes are started the population of the DB will start. After a couple of minutes you can go to http://localhost:3000/leaderboards and explore the UI. Sometimes The Graph crashes when the `match_mocker` is running, so after a while it can be closed. ```bash # terminal 1 (Hardhat) diff --git a/packages/match_mocker/src/constants.ts b/packages/match_mocker/src/constants.ts index 53cf336..2665547 100644 --- a/packages/match_mocker/src/constants.ts +++ b/packages/match_mocker/src/constants.ts @@ -1,3 +1,3 @@ export const MATCH_FREQUENCY = 500; -export const DEFAULT_NUMBER_OF_PLAYERS = 15; +export const DEFAULT_NUMBER_OF_PLAYERS = 6; export const SKILL_CAP = 25; diff --git a/packages/match_mocker/src/player-db.ts b/packages/match_mocker/src/player-db.ts index 84ffb90..99f96ae 100644 --- a/packages/match_mocker/src/player-db.ts +++ b/packages/match_mocker/src/player-db.ts @@ -6,7 +6,7 @@ const game_ids: GameId[] = [ "Chess", "Poker", "Starcraft", - "Street Fighter", + //"Street Fighter", ]; const player_ids: Player["id"][] = [];