CLI deserialize: always force full parse

This commit is contained in:
ThomasV 2018-12-11 13:58:05 +01:00
parent 0ec7005f90
commit 4681ac8c23

View File

@ -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):