mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
strip spaces from raw tx
This commit is contained in:
parent
4a514c7638
commit
3f1e4ae3b1
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
|
||||
self.raw = raw.strip()
|
||||
self.inputs = None
|
||||
|
||||
def update(self, raw):
|
||||
|
|
Loading…
Add table
Reference in a new issue