mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
minor fix
This commit is contained in:
parent
65d0560475
commit
0c8c21f64d
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class WalletStorage(object):
|
||||||
except Exception:
|
except Exception:
|
||||||
raise IOError("Cannot read wallet file.")
|
raise IOError("Cannot read wallet file.")
|
||||||
self.data = {}
|
self.data = {}
|
||||||
for k, v in d.items():
|
for key, value in d.items():
|
||||||
try:
|
try:
|
||||||
json.dumps(key)
|
json.dumps(key)
|
||||||
json.dumps(value)
|
json.dumps(value)
|
||||||
|
|
Loading…
Add table
Reference in a new issue