diff options
author | Florian Dold <florian@dold.me> | 2023-05-07 22:43:45 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2023-05-07 22:43:45 +0200 |
commit | b9d658f50ba9ea7800f3866031f12196160ad01c (patch) | |
tree | 0c7a4eca7d1ed3a03aa8710033c447348a5ac06e | |
parent | 99b844b465c8fb7b9329ea109c8183e9d7f6e3c9 (diff) |
-spelling consistency0.9.3-dev.12
-rw-r--r-- | packages/taler-util/src/transactions-types.ts | 2 | ||||
-rw-r--r-- | packages/taler-wallet-core/src/operations/pay-merchant.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts index fac10cc88..024953f09 100644 --- a/packages/taler-util/src/transactions-types.ts +++ b/packages/taler-util/src/transactions-types.ts @@ -115,7 +115,7 @@ export enum TransactionMinorState { Bank = "bank", Exchange = "exchange", ClaimProposal = "claim-proposal", - CheckRefunds = "check-refunds", + CheckRefund = "check-refund", CreatePurse = "create-purse", DeletePurse = "delete-purse", Ready = "ready", diff --git a/packages/taler-wallet-core/src/operations/pay-merchant.ts b/packages/taler-wallet-core/src/operations/pay-merchant.ts index 99b9a18d2..e34dc7443 100644 --- a/packages/taler-wallet-core/src/operations/pay-merchant.ts +++ b/packages/taler-wallet-core/src/operations/pay-merchant.ts @@ -1747,7 +1747,7 @@ export function computePayMerchantTransactionState( case PurchaseStatus.QueryingRefund: return { major: TransactionMajorState.Pending, - minor: TransactionMinorState.CheckRefunds, + minor: TransactionMinorState.CheckRefund, }; case PurchaseStatus.PendingAcceptRefund: return { |