SomberNight
7 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
2 changed files with
2 additions and
2 deletions
-
plugins/keepkey/keepkey.py
-
plugins/trezor/trezor.py
|
|
@ -327,7 +327,7 @@ class KeepKeyPlugin(HW_PluginBase): |
|
|
|
txinputtype.prev_hash = prev_hash |
|
|
|
txinputtype.prev_index = prev_index |
|
|
|
|
|
|
|
if 'scriptSig' in txin: |
|
|
|
if txin.get('scriptSig') is not None: |
|
|
|
script_sig = bfh(txin['scriptSig']) |
|
|
|
txinputtype.script_sig = script_sig |
|
|
|
|
|
|
|
|
|
@ -379,7 +379,7 @@ class TrezorPlugin(HW_PluginBase): |
|
|
|
txinputtype.prev_hash = prev_hash |
|
|
|
txinputtype.prev_index = prev_index |
|
|
|
|
|
|
|
if 'scriptSig' in txin: |
|
|
|
if txin.get('scriptSig') is not None: |
|
|
|
script_sig = bfh(txin['scriptSig']) |
|
|
|
txinputtype.script_sig = script_sig |
|
|
|
|
|
|
|