Skip to content

Commit

Permalink
fixing indexers path after the re-structure of the indexers
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-aurele-besner committed Jan 17, 2025
1 parent 2f5987c commit 3f73c13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion indexers/consensus/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as dotenv from "dotenv";
import path from "path";

// Load the appropriate .env file
const dotenvPath = path.resolve(__dirname, `../../../.env`);
const dotenvPath = path.resolve(__dirname, `../../.env`);
dotenv.config({ path: dotenvPath });

// Can expand the Datasource processor types via the genreic param
Expand Down
2 changes: 1 addition & 1 deletion indexers/files/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as dotenv from "dotenv";
import path from "path";

// Load the appropriate .env file
const dotenvPath = path.resolve(__dirname, `../../../.env`);
const dotenvPath = path.resolve(__dirname, `../../.env`);
dotenv.config({ path: dotenvPath });

// Can expand the Datasource processor types via the genreic param
Expand Down
2 changes: 1 addition & 1 deletion indexers/leaderboard/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import * as dotenv from "dotenv";
import path from "path";
// Load the appropriate .env file
const dotenvPath = path.resolve(__dirname, `../../../.env`);
const dotenvPath = path.resolve(__dirname, `../../.env`);
dotenv.config({ path: dotenvPath });

// Can expand the Datasource processor types via the genreic param
Expand Down
2 changes: 1 addition & 1 deletion indexers/staking/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as dotenv from "dotenv";
import path from "path";

// Load the appropriate .env file
const dotenvPath = path.resolve(__dirname, `../../../.env`);
const dotenvPath = path.resolve(__dirname, `../../.env`);
dotenv.config({ path: dotenvPath });

// Can expand the Datasource processor types via the genreic param
Expand Down

0 comments on commit 3f73c13

Please sign in to comment.