mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 17:01:34 +00:00
fix tx strip
This commit is contained in:
parent
064f0b71e2
commit
93b674982e
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ class Transaction:
|
|||
return self.raw
|
||||
|
||||
def __init__(self, raw):
|
||||
self.raw = raw.strip()
|
||||
self.raw = raw.strip() if raw else None
|
||||
self.inputs = None
|
||||
|
||||
def update(self, raw):
|
||||
|
|
Loading…
Add table
Reference in a new issue