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 a1c840b commit 1209f8dCopy full SHA for 1209f8d
pycardano/txbuilder.py
@@ -993,9 +993,8 @@ def build(
993
if (
994
utxo not in selected_utxos
995
and utxo not in self.excluded_inputs
996
- and not utxo.output.datum_hash # UTxO with datum should be added by using `add_script_input`
997
- and not utxo.output.datum
998
- and not utxo.output.script
+ and not utxo.output.datum_hash # UTxO with datum hash should be added by using
+ # `add_script_input`
999
):
1000
additional_utxo_pool.append(utxo)
1001
additional_amount += utxo.output.amount
0 commit comments