aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/dbless.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-04-22 18:36:56 +0200
committerFlorian Dold <florian@dold.me>2023-04-22 18:36:56 +0200
commitda59c85d2da6541ba54578adb43db1e4bf12dafa (patch)
tree1c6184260cbf40c0d0724e9a90a3cbcbb83976d0 /packages/taler-wallet-core/src/dbless.ts
parent15feebecfeeda4758a96d1da99a98d9494c4bd2b (diff)
downloadwallet-core-da59c85d2da6541ba54578adb43db1e4bf12dafa.tar.xz
get rid of deprecated bankBaseUrl in more places
Diffstat (limited to 'packages/taler-wallet-core/src/dbless.ts')
-rw-r--r--packages/taler-wallet-core/src/dbless.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/packages/taler-wallet-core/src/dbless.ts b/packages/taler-wallet-core/src/dbless.ts
index 3fb56924d..87e3984b6 100644
--- a/packages/taler-wallet-core/src/dbless.ts
+++ b/packages/taler-wallet-core/src/dbless.ts
@@ -112,7 +112,6 @@ export async function checkReserve(
export interface TopupReserveWithDemobankArgs {
http: HttpRequestLibrary;
reservePub: string;
- bankBaseUrl: string;
bankAccessApiBaseUrl: string;
exchangeInfo: ExchangeInfo;
amount: AmountString;
@@ -122,7 +121,6 @@ export async function topupReserveWithDemobank(
args: TopupReserveWithDemobankArgs,
) {
const {
- bankBaseUrl,
http,
bankAccessApiBaseUrl,
amount,
@@ -130,7 +128,6 @@ export async function topupReserveWithDemobank(
reservePub,
} = args;
const bankHandle: BankServiceHandle = {
- baseUrl: bankBaseUrl,
bankAccessApiBaseUrl: bankAccessApiBaseUrl,
http,
};