Skip to content

Commit

Permalink
Merge pull request #244 from blockfrost/chore/release311
Browse files Browse the repository at this point in the history
release 3.1.1
  • Loading branch information
slowbackspace authored Jan 23, 2025
2 parents b86f5d1 + a468b2b commit b2369b7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.1.1] - 2025-01-23

### Fixed

- Incorrect proposal parameters
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockfrost-backend-ryo",
"version": "3.1.0",
"version": "3.1.1",
"description": "",
"keywords": [],
"license": "Apache-2.0",
Expand Down
12 changes: 10 additions & 2 deletions src/sql/governance/proposals_proposal_metadata.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,13 @@ FROM gov_action_proposal gap
JOIN tx ON (gap.tx_id = tx.id)
JOIN voting_anchor va ON (va.id = gap.voting_anchor_id)
JOIN off_chain_vote_data ocvd ON (ocvd.voting_anchor_id = va.id)
WHERE encode(tx.hash, 'hex') = $1
AND gap.index = $2
WHERE encode(tx.hash, 'hex') = 'ccb27f6b0d58c25ae33fd821b62c387f5230dae930afd07489fa3df56ae56522'
AND gap.index = 0


SELECT *
FROM gov_action_proposal gap
JOIN tx ON (gap.tx_id = tx.id)

WHERE encode(tx.hash, 'hex') = '0b19476e40bbbb5e1e8ce153523762e2b6859e7ecacbaf06eae0ee6a447e79b9'
AND gap.index = 0

0 comments on commit b2369b7

Please sign in to comment.