Skip to content

Commit

Permalink
Fix publish params
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-spencer committed Feb 12, 2024
1 parent 1cf2445 commit 7dfe3e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 03.claim.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_script_and_claimables(
datum = cbor2.loads(item.output.datum.cbor)
# PublishParams are validated in our smart contract.
datum_obj = contract.PublishParams(
datum.value[0], datum.value[1], datum.value[2]
datum.value[1][0], datum.value[1][1], datum.value[1][2]
)
fee_address = pyc.Address(
pyc.VerificationKeyHash.from_primitive(datum_obj.fee_address),
Expand Down

0 comments on commit 7dfe3e2

Please sign in to comment.