This commit is contained in:
Florian Dold 2023-08-22 16:37:16 +02:00
parent 828e4ad3ef
commit b9f908db58
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -168,10 +168,10 @@ export async function createNativeWalletHost2(
let dbResp: MakeDbResult;
if (args.persistentStoragePath && args.persistentStoragePath.endsWith(".json")) {
logger.info("using JSON file backend (slow!)");
logger.info("using JSON file DB backend (slow!)");
dbResp = await makeFileDb(args);
} else {
logger.info("using JSON file backend (experimental!)");
logger.info("using sqlite3 DB backend (experimental!)");
dbResp = await makeSqliteDb(args)
}