Skip to content

Commit

Permalink
import fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SoA432 committed Sep 18, 2024
1 parent 11aa06c commit 1a5bcb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/run-grpcurl-firehose.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const fs = require('fs');
const { exec } = require('child_process');
const { affectedChains } = require('./known-issues-chains');
const chains = JSON.parse(
fs.readFileSync('data/chains/V2/chains.json', 'utf8'),
fs.readFileSync('../data/chains/V2/chains.json', 'utf8'),
);

function runGrpcurl(chainId, serviceName) {
Expand Down
4 changes: 3 additions & 1 deletion scripts/run-grpcurl-substreams.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
const fs = require('fs');
const { exec } = require('child_process');
const { affectedChains } = require('./known-issues-chains');
const chains = JSON.parse(fs.readFileSync('chains.json', 'utf8'));
const chains = JSON.parse(
fs.readFileSync('../data/chains/V2/chains.json', 'utf8'),
);

function runGrpcurl(chainId, serviceName) {
return new Promise((resolve, reject) => {
Expand Down

0 comments on commit 1a5bcb8

Please sign in to comment.