-spelling consistency

This commit is contained in:
Florian Dold 2023-05-07 22:43:45 +02:00
parent 99b844b465
commit b9d658f50b
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ export enum TransactionMinorState {
Bank = "bank", Bank = "bank",
Exchange = "exchange", Exchange = "exchange",
ClaimProposal = "claim-proposal", ClaimProposal = "claim-proposal",
CheckRefunds = "check-refunds", CheckRefund = "check-refund",
CreatePurse = "create-purse", CreatePurse = "create-purse",
DeletePurse = "delete-purse", DeletePurse = "delete-purse",
Ready = "ready", Ready = "ready",

View File

@ -1747,7 +1747,7 @@ export function computePayMerchantTransactionState(
case PurchaseStatus.QueryingRefund: case PurchaseStatus.QueryingRefund:
return { return {
major: TransactionMajorState.Pending, major: TransactionMajorState.Pending,
minor: TransactionMinorState.CheckRefunds, minor: TransactionMinorState.CheckRefund,
}; };
case PurchaseStatus.PendingAcceptRefund: case PurchaseStatus.PendingAcceptRefund:
return { return {