From 4681ac8c23cc587f7bd0842e6aa922a9feff01de Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 11 Dec 2018 13:58:05 +0100 Subject: [PATCH] CLI deserialize: always force full parse --- electrum/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):