diff --git a/electrum/commands.py b/electrum/commands.py index fd478ded7..41ec9e3d0 100644 --- a/electrum/commands.py +++ b/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):