strip spaces from raw tx

This commit is contained in:
ThomasV 2015-08-18 10:17:53 +02:00
parent 4a514c7638
commit 3f1e4ae3b1
1 changed files with 1 additions and 1 deletions

View File

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