Browse Source

coldcard: fix spending when there is no change

follow-up 9037f25da1
master
SomberNight 7 years ago
parent
commit
5d52dc204c
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/plugins/coldcard/coldcard.py

2
electrum/plugins/coldcard/coldcard.py

@ -390,7 +390,7 @@ class Coldcard_KeyStore(Hardware_KeyStore):
wallet.add_hw_info(tx) wallet.add_hw_info(tx)
# wallet.add_hw_info installs this attr # wallet.add_hw_info installs this attr
assert tx.output_info, 'need data about outputs' assert tx.output_info is not None, 'need data about outputs'
# Build map of pubkey needed as derivation from master, in PSBT binary format # Build map of pubkey needed as derivation from master, in PSBT binary format
# 1) binary version of the common subpath for all keys # 1) binary version of the common subpath for all keys

Loading…
Cancel
Save