taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 6289183866c1d7e78dc6f156ab3689a8d65d74e0
parent 2838d389de8c8b09f50d269aa6e1355fd8791ad0
Author: Florian Dold <florian@dold.me>
Date:   Wed, 15 Jul 2026 15:05:42 +0200

fix wrong mapping for SuspendedWithdrawing state

Diffstat:
Mpackages/taler-wallet-core/src/pay-peer-pull-credit.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/pay-peer-pull-credit.ts b/packages/taler-wallet-core/src/pay-peer-pull-credit.ts @@ -1309,7 +1309,7 @@ export function computePeerPullCreditTransactionState( }; case PeerPullPaymentCreditStatus.SuspendedWithdrawing: return { - major: TransactionMajorState.Pending, + major: TransactionMajorState.Suspended, minor: TransactionMinorState.Withdraw, }; case PeerPullPaymentCreditStatus.Aborted: