aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-04-30 13:23:23 +0200
committerFlorian Dold <florian@dold.me>2024-04-30 13:23:23 +0200
commit84adb1e78e49057cdcee15c71ad788f56bb0fff9 (patch)
treec8ab545301c61a03dd5759135f647070cc62c121 /packages/taler-util/src
parent8b5d1276b9d9043e85cba91704c908ff544916e0 (diff)
downloadwallet-core-84adb1e78e49057cdcee15c71ad788f56bb0fff9.tar.xz
harness: test for withdrawal handover
Diffstat (limited to 'packages/taler-util/src')
-rw-r--r--packages/taler-util/src/wallet-types.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts
index ccf3c230a..a52b3e6ba 100644
--- a/packages/taler-util/src/wallet-types.ts
+++ b/packages/taler-util/src/wallet-types.ts
@@ -1980,7 +1980,6 @@ export const codecForApplyRefundFromPurchaseIdRequest =
export interface GetWithdrawalDetailsForUriRequest {
talerWithdrawUri: string;
restrictAge?: number;
- notifyChangeFromPendingTimeoutMs?: number;
}
export const codecForGetWithdrawalDetailsForUri =
@@ -1988,10 +1987,6 @@ export const codecForGetWithdrawalDetailsForUri =
buildCodecForObject<GetWithdrawalDetailsForUriRequest>()
.property("talerWithdrawUri", codecForString())
.property("restrictAge", codecOptional(codecForNumber()))
- .property(
- "notifyChangeFromPendingTimeoutMs",
- codecOptional(codecForNumber()),
- )
.build("GetWithdrawalDetailsForUriRequest");
export interface ListKnownBankAccountsRequest {