Skip to content

Commit 618a26b

Browse files
Include get future pparams
1 parent 7d0ee47 commit 618a26b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cardano_clusterlib/query_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ def get_treasury(self) -> int:
711711

712712
def get_future_pparams(self) -> dict[str, tp.Any]:
713713
"""Get the future protocol parameters that will apply at the next epoch."""
714-
out: dict[str, tp.Any] = json.loads(self.query_cli(["future-pparams"]))
714+
out: dict[str, tp.Any] = json.loads(self.query_cli(["future-pparams"])) or {}
715715
return out
716716

717717
def __repr__(self) -> str:

0 commit comments

Comments
 (0)