Skip to content

Commit

Permalink
Fix active_upgrade_proposals parser by adding an alternate message ty…
Browse files Browse the repository at this point in the history
…pe into the check
  • Loading branch information
pharr117 committed Oct 30, 2023
1 parent e6d596b commit 619fed1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,12 @@ def fetch_active_upgrade_proposals(rest_url, network, network_repo_url):

for proposal in data.get("proposals", []):
content = proposal.get("content", {})
proposal_type = content.get("@type")
if (
content.get("@type")
== "/cosmos.upgrade.v1beta1.SoftwareUpgradeProposal"
proposal_type
== "/cosmos.upgrade.v1beta1.SoftwareUpgradeProposal" or
proposal_type
== '/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade'
):
# Extract version from the plan name
plan = content.get("plan", {})
Expand Down

0 comments on commit 619fed1

Please sign in to comment.