mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +00:00
added small comment for ast.literal_eval
This commit is contained in:
parent
a85901b4b2
commit
f0fb3ec0e1
1 changed files with 1 additions and 1 deletions
|
@ -688,7 +688,7 @@ class Wallet:
|
|||
except:
|
||||
return
|
||||
try:
|
||||
d = ast.literal_eval( data )
|
||||
d = ast.literal_eval( data ) #parse raw data from reading wallet file
|
||||
interface.old_to_new(d)
|
||||
self.seed_version = d.get('seed_version')
|
||||
self.master_public_key = d.get('master_public_key').decode('hex')
|
||||
|
|
Loading…
Add table
Reference in a new issue