diff options
author | Florian Dold <florian@dold.me> | 2024-07-08 14:40:25 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2024-07-08 14:40:25 +0200 |
commit | 86f045f6730bea2a02398326602efac9a81b1687 (patch) | |
tree | e0e4dedabb6a2bf84d5828362d83d3954c895ebc /packages/taler-wallet-core | |
parent | e37fa59b6d9606c09ca447bc3a3fb73d61bd6de1 (diff) |
util: towards API type decl reorg
Diffstat (limited to 'packages/taler-wallet-core')
-rw-r--r-- | packages/taler-wallet-core/src/withdraw.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/withdraw.ts b/packages/taler-wallet-core/src/withdraw.ts index 6c489eda2..8e52058e4 100644 --- a/packages/taler-wallet-core/src/withdraw.ts +++ b/packages/taler-wallet-core/src/withdraw.ts @@ -83,7 +83,7 @@ import { assertUnreachable, checkDbInvariant, checkLogicInvariant, - codeForBankWithdrawalOperationPostResponse, + codecForBankWithdrawalOperationPostResponse, codecForBankWithdrawalOperationStatus, codecForCashinConversionResponse, codecForConversionBankConfig, @@ -2573,7 +2573,7 @@ async function registerReserveWithBank( }); const status = await readSuccessResponseJsonOrThrow( httpResp, - codeForBankWithdrawalOperationPostResponse(), + codecForBankWithdrawalOperationPostResponse(), ); await ctx.transition({}, async (r) => { |