storage: fix path standardisation

This commit is contained in:
SomberNight 2019-03-04 02:48:25 +01:00
parent 93fa9a9d69
commit d11481f360
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -54,7 +54,6 @@ class WalletStorage(PrintError):
self._file_exists = self.path and os.path.exists(self.path) self._file_exists = self.path and os.path.exists(self.path)
DB_Class = JsonDB DB_Class = JsonDB
self.path = path
self.print_error("wallet path", self.path) self.print_error("wallet path", self.path)
self.pubkey = None self.pubkey = None
if self.file_exists(): if self.file_exists():