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 bf5d83a commit f95e8edCopy full SHA for f95e8ed
pycardano/txbuilder.py
@@ -923,16 +923,14 @@ def build(
923
# Collect all signatories from explicitly defined
924
# transaction inputs and collateral inputs, and input addresses
925
input_addresses = [
926
- i.output.address for i in self.inputs + self.collaterals
927
- ] + [
928
Address.from_primitive(a) if isinstance(a, str) else a
929
for a in self.input_addresses
930
]
931
required_signers = set(
932
a.payment_part
933
for a in input_addresses
934
if isinstance(a.payment_part, VerificationKeyHash)
935
- )
+ ) | self._input_vkey_hashes()
936
self.required_signers = list(required_signers)
937
938
selected_utxos = []
0 commit comments