diff options
author | Sebastian <sebasjm@gmail.com> | 2021-06-20 16:14:45 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2021-06-20 16:14:56 -0300 |
commit | 7f3ce304cb4e699fff61703ad5700770c7cf507e (patch) | |
tree | 9a261626d6b4cba0f927e4677f3009d784600607 /packages/taler-wallet-core/src/operations/reserves.ts | |
parent | 221e71b91623bd38e71d6325ed66a998fe9f7ffd (diff) |
missing globalThis Polyfill, remove duplicate url util
Diffstat (limited to 'packages/taler-wallet-core/src/operations/reserves.ts')
-rw-r--r-- | packages/taler-wallet-core/src/operations/reserves.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/operations/reserves.ts b/packages/taler-wallet-core/src/operations/reserves.ts index fca4d2143..162b5b405 100644 --- a/packages/taler-wallet-core/src/operations/reserves.ts +++ b/packages/taler-wallet-core/src/operations/reserves.ts @@ -64,13 +64,12 @@ import { getBankWithdrawalInfo, } from "./withdraw.js"; import { encodeCrock, getRandomBytes } from "../crypto/talerCrypto.js"; -import { Logger } from "@gnu-taler/taler-util"; +import { Logger, URL } from "@gnu-taler/taler-util"; import { readSuccessResponseJsonOrErrorCode, readSuccessResponseJsonOrThrow, throwUnexpectedRequestError, } from "../util/http.js"; -import { URL } from "../util/url.js"; import { GetReadOnlyAccess } from "../util/query.js"; const logger = new Logger("reserves.ts"); |