tCLI deserialize: always force full parse - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 4681ac8c23cc587f7bd0842e6aa922a9feff01de DIR parent 0ec7005f90d986d801a94a2038b5fab94d36cf70 HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 11 Dec 2018 13:58:05 +0100 CLI deserialize: always force full parse Diffstat: M electrum/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/commands.py b/electrum/commands.py t@@ -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):