fix tx strip

This commit is contained in:
ThomasV 2015-08-18 16:33:51 +02:00
parent 064f0b71e2
commit 93b674982e
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.strip()
self.raw = raw.strip() if raw else None
self.inputs = None
def update(self, raw):