From 16d30adf0d57f6d954230c437e56e8a8700ef2ae Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 2 May 2023 10:59:50 +0200 Subject: -withdrawal notifications --- packages/taler-util/src/wallet-types.ts | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'packages/taler-util') diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts index ec53541a5..d2355be6f 100644 --- a/packages/taler-util/src/wallet-types.ts +++ b/packages/taler-util/src/wallet-types.ts @@ -1680,21 +1680,15 @@ export const codecForResumeTransaction = (): Codec => export interface AbortTransactionRequest { transactionId: string; +} - /** - * Move the payment immediately into an aborted state. - * The UI should warn the user that this might lead - * to money being lost. - * - * Defaults to false. - */ - forceImmediateAbort?: boolean; +export interface CancelAbortingTransactionRequest { + transactionId: string; } export const codecForAbortTransaction = (): Codec => buildCodecForObject() .property("transactionId", codecForString()) - .property("forceImmediateAbort", codecOptional(codecForBoolean())) .build("AbortTransactionRequest"); export interface DepositGroupFees { -- cgit v1.2.3