aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-04-08 16:40:21 +0200
committerFlorian Dold <florian@dold.me>2024-04-08 16:40:25 +0200
commit4fda640cbb68a6eb077b8313eb93e2a65266eded (patch)
treef1094fe879d6c1b9b1f4f299fcb5ed494afc7509 /packages/taler-wallet-core/src/wallet.ts
parent0aeb79b84d9347ba9642d0e2dccf1b20927b45e0 (diff)
downloadwallet-core-4fda640cbb68a6eb077b8313eb93e2a65266eded.tar.xz
wallet-core: rename request to setWalletRunConfig
The old name was ambiguous, as the request does not refer to the persistent config of the wallet, but the ephemeral run-time configuration of the wallet-core instance.
Diffstat (limited to 'packages/taler-wallet-core/src/wallet.ts')
-rw-r--r--packages/taler-wallet-core/src/wallet.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts
index b54204d64..fa78cf24b 100644
--- a/packages/taler-wallet-core/src/wallet.ts
+++ b/packages/taler-wallet-core/src/wallet.ts
@@ -688,7 +688,7 @@ async function dispatchRequestInternal<Op extends WalletApiOperation>(
await recoverStoredBackup(wex, req);
return {};
}
- case WalletApiOperation.SetConfig:
+ case WalletApiOperation.SetWalletRunConfig:
case WalletApiOperation.InitWallet: {
const req = codecForInitRequest().decode(payload);