1
0

wallet_db: fix typo in renamed arg "upgrade"

follow-up 8be3c4dadd
This commit is contained in:
SomberNight
2023-09-22 16:36:47 +00:00
parent 0a3dd8e5e5
commit a7128438d4

View File

@@ -1634,7 +1634,7 @@ class WalletDB(JsonDB):
for data in split_data:
path = root_path + '.' + data['suffix']
item_storage = WalletStorage(path)
db = WalletDB(json.dumps(data), storage=item_storage, upgrades=True)
db = WalletDB(json.dumps(data), storage=item_storage, upgrade=True)
db.write()
file_list.append(path)
return file_list