aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-cli/src/index.ts')
-rw-r--r--packages/taler-wallet-cli/src/index.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts
index a55b6bd32..a1b008f5e 100644
--- a/packages/taler-wallet-cli/src/index.ts
+++ b/packages/taler-wallet-cli/src/index.ts
@@ -29,6 +29,7 @@ import {
encodeCrock,
getErrorDetailFromException,
getRandomBytes,
+ InitRequest,
j2s,
Logger,
NotificationType,
@@ -284,9 +285,7 @@ async function createLocalWallet(
"native-init",
{
config: {
- features: {
- lazyTaskLoop: args.lazyTaskLoop,
- },
+ lazyTaskLoop: args.lazyTaskLoop,
testing: {
devModeActive: checkEnvFlag("TALER_WALLET_DEV_MODE"),
denomselAllowLate: checkEnvFlag(
@@ -296,7 +295,7 @@ async function createLocalWallet(
skipDefaults: walletCliArgs.wallet.skipDefaults,
},
},
- },
+ } satisfies InitRequest,
);
return res;
} catch (e) {