From a1c24c6261f8d22d9bc64ba7c44f3011147ef54f Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 2 Jun 2023 13:48:48 +0000 Subject: [PATCH] jade(hw): fix sign_transaction() same as 9e13246be845b4810f625a4986c03ec9d4b3c676 fixes https://github.com/spesmilo/electrum/issues/8463 regression from https://github.com/spesmilo/electrum/pull/8230 --- electrum/plugins/jade/jade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/plugins/jade/jade.py b/electrum/plugins/jade/jade.py index 56b835a88..f4638eafd 100644 --- a/electrum/plugins/jade/jade.py +++ b/electrum/plugins/jade/jade.py @@ -299,7 +299,7 @@ class Jade_KeyStore(Hardware_KeyStore): change[index] = {'path':path, 'variant': desc.to_legacy_electrum_script_type()} # The txn itself - txn_bytes = bytes.fromhex(tx.serialize_to_network()) + txn_bytes = bytes.fromhex(tx.serialize_to_network(include_sigs=False)) # Request Jade generate the signatures for our inputs. # Change details are passed to be validated on the hw (user does not confirm)