Skip to content

Commit

Permalink
Merge pull request #31 from DefiantLabs/patch/missing-proposal-altern…
Browse files Browse the repository at this point in the history
…ate-message-type

Fix active_upgrade_proposals parser by adding an alternate message ty…
  • Loading branch information
danbryan committed Oct 30, 2023
2 parents e6d596b + 619fed1 commit 5bb8247
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 5bb8247

Please sign in to comment.