mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
tx: add deserialize to locktime/version properties (#6633)
This commit is contained in:
parent
15a77e2f47
commit
546c0e1bb6
1 changed files with 2 additions and 0 deletions
|
@ -545,6 +545,7 @@ class Transaction:
|
|||
|
||||
@property
|
||||
def locktime(self):
|
||||
self.deserialize()
|
||||
return self._locktime
|
||||
|
||||
@locktime.setter
|
||||
|
@ -555,6 +556,7 @@ class Transaction:
|
|||
|
||||
@property
|
||||
def version(self):
|
||||
self.deserialize()
|
||||
return self._version
|
||||
|
||||
@version.setter
|
||||
|
|
Loading…
Add table
Reference in a new issue