added small comment for ast.literal_eval

This commit is contained in:
Jimbo77 2012-08-19 17:49:51 -07:00
parent a85901b4b2
commit f0fb3ec0e1
1 changed files with 1 additions and 1 deletions

View File

@ -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')