File tree 2 files changed +4
-13
lines changed
2 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -922,16 +922,7 @@ def build(
922
922
) and self .required_signers is None :
923
923
# Collect all signatories from explicitly defined
924
924
# transaction inputs and collateral inputs, and input addresses
925
- input_addresses = [
926
- Address .from_primitive (a ) if isinstance (a , str ) else a
927
- for a in self .input_addresses
928
- ]
929
- 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
- )
934
- self .required_signers = list (required_signers )
925
+ self .required_signers = list (self ._input_vkey_hashes ())
935
926
936
927
selected_utxos = []
937
928
selected_amount = Value ()
Original file line number Diff line number Diff line change @@ -330,16 +330,16 @@ def test_tx_builder_mint_multi_asset(chain_context):
330
330
[
331
331
sender_address .to_primitive (),
332
332
[
333
- 5809683 ,
333
+ 5811003 ,
334
334
{b"1111111111111111111111111111" : {b"Token1" : 1 , b"Token2" : 2 }},
335
335
],
336
336
],
337
337
],
338
- 2 : 190317 ,
338
+ 2 : 188997 ,
339
339
3 : 123456789 ,
340
340
8 : 1000 ,
341
341
9 : mint ,
342
- 14 : [sender_address . payment_part . to_primitive () ],
342
+ 14 : [],
343
343
}
344
344
345
345
assert expected == tx_body .to_primitive ()
You can’t perform that action at this time.
0 commit comments