Browse Source

CLI deserialize: always force full parse

3.3.3.1
ThomasV 6 years ago
parent
commit
4681ac8c23
  1. 2
      electrum/commands.py

2
electrum/commands.py

@ -323,7 +323,7 @@ class Commands:
def deserialize(self, tx):
"""Deserialize a serialized transaction"""
tx = Transaction(tx)
return tx.deserialize()
return tx.deserialize(force_full_parse=True)
@command('n')
def broadcast(self, tx):

Loading…
Cancel
Save