1
0

keystore: add workaround for StoredDict issue #6066

note: not a proper fix... but works for now
This commit is contained in:
SomberNight
2020-04-01 13:31:49 +02:00
parent e53ce5dee0
commit 2d3c2eeea9
2 changed files with 4 additions and 1 deletions

View File

@@ -229,6 +229,7 @@ class Ledger_KeyStore(Hardware_KeyStore):
self.force_watching_only = False
self.signing = False
self.cfg = d.get('cfg', {'mode': 0})
self.cfg = dict(self.cfg) # convert to dict from StoredDict (see #6066)
def dump(self):
obj = Hardware_KeyStore.dump(self)