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 f95e8ed commit bd6b1c4Copy full SHA for bd6b1c4
pycardano/txbuilder.py
@@ -926,11 +926,11 @@ def build(
926
Address.from_primitive(a) if isinstance(a, str) else a
927
for a in self.input_addresses
928
]
929
- required_signers = set(
+ required_signers = self._input_vkey_hashes() | set(
930
a.payment_part
931
for a in input_addresses
932
if isinstance(a.payment_part, VerificationKeyHash)
933
- ) | self._input_vkey_hashes()
+ )
934
self.required_signers = list(required_signers)
935
936
selected_utxos = []
0 commit comments