We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 432a619 commit 830090aCopy full SHA for 830090a
pycardano/txbuilder.py
@@ -1008,13 +1008,7 @@ def build(
1008
1009
for address in self.input_addresses:
1010
for utxo in self.context.utxos(address):
1011
- if (
1012
- utxo not in seen_utxos
1013
- and utxo not in self.excluded_inputs
1014
- and not utxo.output.datum_hash # UTxO with datum should be added by using `add_script_input`
1015
- and not utxo.output.datum
1016
- and not utxo.output.script
1017
- ):
+ if utxo not in seen_utxos and utxo not in self.excluded_inputs:
1018
additional_utxo_pool.append(utxo)
1019
additional_amount += utxo.output.amount
1020
seen_utxos.add(utxo)
0 commit comments