Fix a bug in PaymentRequest __str__() function

This commit is contained in:
Calin Culianu 2018-07-02 02:36:19 +03:00
parent 10f037c40c
commit 4fc7da55a9

View file

@ -111,7 +111,7 @@ class PaymentRequest:
self.tx = None
def __str__(self):
return self.raw
return str(self.raw)
def parse(self, r):
if self.error: