Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyParish69 committed Aug 22, 2024
1 parent ca011c1 commit 7074d2b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/utility/validate_zone_data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ export function validate_zone_files() {
throw new Error(`Chain ${zoneChain.chain_name} does not exist in the Chain Registry.`);
}

let network_type = chain_reg.getFileProperty(zoneChain.chain_name, "chain", "network_type");
let IS_MAINNET = network_type === "mainnet";

/*
let CHAIN_STAKING = false;
let staking_token = chain_reg.getFileProperty(zoneChain.chain_name, "chain", "staking")?.staking_tokens[0]?.denom;
Expand Down Expand Up @@ -88,6 +85,8 @@ export function validate_zone_files() {

});

let IS_MAINNET = chain_reg.getFileProperty(chainName, "chain", "network_type") === "mainnet";

zoneAssetsJson.assets.forEach((zoneAsset) => {

let ASSET_EXISTS = false;
Expand Down

0 comments on commit 7074d2b

Please sign in to comment.