electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 4681ac8c23cc587f7bd0842e6aa922a9feff01de
parent 0ec7005f90d986d801a94a2038b5fab94d36cf70
Author: ThomasV <thomasv@electrum.org>
Date:   Tue, 11 Dec 2018 13:58:05 +0100

CLI deserialize: always force full parse

Diffstat:
Melectrum/commands.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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):