Merge pull request #2755 from jhoenicke/multisigfix

Set bip32 path for multisig change address
This commit is contained in:
ThomasV 2017-08-16 08:04:32 +02:00 committed by GitHub
commit 322587e493
1 changed files with 1 additions and 0 deletions

View File

@ -344,6 +344,7 @@ class TrezorCompatiblePlugin(HW_PluginBase):
txoutputtype = self.types.TxOutputType( txoutputtype = self.types.TxOutputType(
multisig = multisig, multisig = multisig,
amount = amount, amount = amount,
address_n = self.client_class.expand_path(derivation + "/%d/%d"%index),
script_type = self.types.PAYTOMULTISIG) script_type = self.types.PAYTOMULTISIG)
else: else:
txoutputtype = self.types.TxOutputType() txoutputtype = self.types.TxOutputType()