We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3be650f commit 3bf1e81Copy full SHA for 3bf1e81
cardano_clusterlib/query_group.py
@@ -714,5 +714,10 @@ def get_future_pparams(self) -> dict[str, tp.Any]:
714
out: dict[str, tp.Any] = json.loads(self.query_cli(["future-pparams"])) or {}
715
return out
716
717
+ def get_ratify_state(self) -> dict[str, tp.Any]:
718
+ """Get the current ratification state."""
719
+ out: dict[str, tp.Any] = json.loads(self.query_cli(["ratify-state"]))
720
+ return out
721
+
722
def __repr__(self) -> str:
723
return f"<{self.__class__.__name__}: clusterlib_obj={id(self._clusterlib_obj)}>"
0 commit comments