Correct method to property calls

This commit is contained in:
lash
2022-05-09 19:21:45 +00:00
parent 20dfb641ff
commit 23f977482c
2 changed files with 3 additions and 3 deletions

View File

@@ -648,11 +648,11 @@ class Tx(BaseTx, Src):
self.r = src.get('r')
self.s = src.get('s')
self.status = Status.PENDING
#self.status = Status.PENDING
def as_dict(self):
return self.src()
return self.src
def apply_receipt(self, rcpt, strict=False):