summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/dbless.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/dbless.ts')
-rw-r--r--packages/taler-wallet-core/src/dbless.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/taler-wallet-core/src/dbless.ts b/packages/taler-wallet-core/src/dbless.ts
index 2d067a1dc..dfefe6ef5 100644
--- a/packages/taler-wallet-core/src/dbless.ts
+++ b/packages/taler-wallet-core/src/dbless.ts
@@ -105,7 +105,7 @@ export async function checkReserve(
}
}
-export interface TopupReserveWithDemobankArgs {
+export interface TopupReserveWithBankArgs {
http: HttpRequestLibrary;
reservePub: string;
corebankApiBaseUrl: string;
@@ -113,8 +113,8 @@ export interface TopupReserveWithDemobankArgs {
amount: AmountString;
}
-export async function topupReserveWithDemobank(
- args: TopupReserveWithDemobankArgs,
+export async function topupReserveWithBank(
+ args: TopupReserveWithBankArgs,
) {
const { http, corebankApiBaseUrl, amount, exchangeInfo, reservePub } = args;
const bankClient = new TalerCorebankApiClient(corebankApiBaseUrl);