Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Unreleased changes are in the `master` branch.

## [Unreleased]

### Fixed

- `/governance/proposals/:tx_hash/:cert_index`: fixed description for `dropped_epoch`

## [0.1.76] - 2025-04-03

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion blockfrost-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6779,7 +6779,7 @@ components:
dropped_epoch:
type: integer
nullable: true
description: The epoch at which the proposal was dropped. A proposal is dropped if it expires, is enacted, or if any of its dependencies expire.
description: The epoch at which the proposal was dropped. A proposal is dropped if it expires or if any of its dependencies expire.
expired_epoch:
type: integer
nullable: true
Expand Down
2 changes: 1 addition & 1 deletion docs/blockfrost-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7119,7 +7119,7 @@ components:
nullable: true
description: >-
The epoch at which the proposal was dropped. A proposal is dropped
if it expires, is enacted, or if any of its dependencies expire.
if it expires or if any of its dependencies expire.
expired_epoch:
type: integer
nullable: true
Expand Down
2 changes: 1 addition & 1 deletion json-schema.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9289,7 +9289,7 @@
"dropped_epoch": {
"type": "integer",
"nullable": true,
"description": "The epoch at which the proposal was dropped. A proposal is dropped if it expires, is enacted, or if any of its dependencies expire."
"description": "The epoch at which the proposal was dropped. A proposal is dropped if it expires or if any of its dependencies expire."
},
"expired_epoch": {
"type": "integer",
Expand Down
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7119,7 +7119,7 @@ components:
nullable: true
description: >-
The epoch at which the proposal was dropped. A proposal is dropped
if it expires, is enacted, or if any of its dependencies expire.
if it expires or if any of its dependencies expire.
expired_epoch:
type: integer
nullable: true
Expand Down
2 changes: 1 addition & 1 deletion src/generated-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7113,7 +7113,7 @@ export interface components {
ratified_epoch: number | null;
/** @description The epoch at which the proposal was enacted. Null if the proposal has not been enacted. */
enacted_epoch: number | null;
/** @description The epoch at which the proposal was dropped. A proposal is dropped if it expires, is enacted, or if any of its dependencies expire. */
/** @description The epoch at which the proposal was dropped. A proposal is dropped if it expires or if any of its dependencies expire. */
dropped_epoch: number | null;
/** @description The epoch at which the proposal expired. Null if the proposal has not expired. */
expired_epoch: number | null;
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/governance/proposal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ properties:
dropped_epoch:
type: integer
nullable: true
description: The epoch at which the proposal was dropped. A proposal is dropped if it expires, is enacted, or if any of its dependencies expire.
description: The epoch at which the proposal was dropped. A proposal is dropped if it expires or if any of its dependencies expire.
expired_epoch:
type: integer
nullable: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12529,7 +12529,7 @@ under which it is valid
"type": "string",
},
"dropped_epoch": {
"description": "The epoch at which the proposal was dropped. A proposal is dropped if it expires, is enacted, or if any of its dependencies expire.",
"description": "The epoch at which the proposal was dropped. A proposal is dropped if it expires or if any of its dependencies expire.",
"nullable": true,
"type": "integer",
},
Expand Down