We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fc698a commit 17c322aCopy full SHA for 17c322a
modules/executive/api/fetchExecutives.ts
@@ -47,7 +47,7 @@ export async function getGithubExecutives(network: SupportedNetworks): Promise<C
47
const path = `https://raw.githubusercontent.com/${githubRepo.owner}/${
48
githubRepo.repo
49
}/master/${pathParts.join('/')}/${encodeURIComponent(last)}`;
50
- return parseExecutive(file.object.text, proposalIndex, path, network);
+ return parseExecutive(file.object.text, proposalIndex, path, SupportedNetworks.MAINNET); //always use mainnet proposal index for now
51
} catch (e) {
52
logger.error(`getGithubExecutives: network ${network}`, e);
53
// Catch error and return null if failed fetching one proposal
0 commit comments