mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 01:35:20 +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
|
return self.raw
|
||||||
|
|
||||||
def __init__(self, raw):
|
def __init__(self, raw):
|
||||||
self.raw = raw.strip()
|
self.raw = raw.strip() if raw else None
|
||||||
self.inputs = None
|
self.inputs = None
|
||||||
|
|
||||||
def update(self, raw):
|
def update(self, raw):
|
||||||
|
|
Loading…
Add table
Reference in a new issue