Skip to content

Commit

Permalink
update default params for proof-detail endpoint so they match the def…
Browse files Browse the repository at this point in the history
…aults in the Production API
  • Loading branch information
KPreisner committed Aug 7, 2024
1 parent 80f3504 commit 9931296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sindri/sindri.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,8 @@ def get_proof(
proof_id: str,
include_proof: bool = True,
include_public: bool = True,
include_smart_contract_calldata: bool = False,
include_verification_key: bool = False,
include_smart_contract_calldata: bool = True,
include_verification_key: bool = True,
) -> dict:
"""Get info for an existing proof. For information, refer to the
[API docs](https://sindri.app/docs/reference/api/proof-detail/).
Expand Down

0 comments on commit 9931296

Please sign in to comment.