aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-05-16 01:28:44 +0200
committerFlorian Dold <florian@dold.me>2024-05-16 01:28:44 +0200
commit98c188c1b14f73a6b81f41a0cacd6195bb53208e (patch)
tree74894c4672501d5b30ea91bb0745f0bfe89d5f14 /packages/taler-wallet-cli
parentaa39162de0bba9b7673db5214012efee1ea61f15 (diff)
downloadwallet-core-98c188c1b14f73a6b81f41a0cacd6195bb53208e.tar.xz
-move config value to not break UI code
Diffstat (limited to 'packages/taler-wallet-cli')
-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) {