aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/dbless.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-06-16 09:40:45 -0300
committerSebastian <sebasjm@gmail.com>2023-06-16 09:40:45 -0300
commit444c5427f41f8030b117a7d3589219abfa60bd1c (patch)
treef33b276528a0369452f25987522328b46f8f8552 /packages/taler-wallet-core/src/dbless.ts
parentd97f440f255966c4231c6c4923a3fff9662a58fd (diff)
downloadwallet-core-444c5427f41f8030b117a7d3589219abfa60bd1c.tar.xz
remove some type literal and pretty
Diffstat (limited to 'packages/taler-wallet-core/src/dbless.ts')
-rw-r--r--packages/taler-wallet-core/src/dbless.ts8
1 files changed, 1 insertions, 7 deletions
diff --git a/packages/taler-wallet-core/src/dbless.ts b/packages/taler-wallet-core/src/dbless.ts
index 68cce2b8d..4dfdff3f7 100644
--- a/packages/taler-wallet-core/src/dbless.ts
+++ b/packages/taler-wallet-core/src/dbless.ts
@@ -120,13 +120,7 @@ export interface TopupReserveWithDemobankArgs {
export async function topupReserveWithDemobank(
args: TopupReserveWithDemobankArgs,
) {
- const {
- http,
- bankAccessApiBaseUrl,
- amount,
- exchangeInfo,
- reservePub,
- } = args;
+ const { http, bankAccessApiBaseUrl, amount, exchangeInfo, reservePub } = args;
const bankHandle: BankServiceHandle = {
bankAccessApiBaseUrl: bankAccessApiBaseUrl,
http,