aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/refund.ts
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-11-08 01:20:50 +0100
committerChristian Grothoff <christian@grothoff.org>2020-11-08 01:20:50 +0100
commitc5b25d1cbd459ed90af3e28c9f8d0899a3a28848 (patch)
tree0a8c7124f71be8afb91022868771d22395814db2 /packages/taler-wallet-core/src/operations/refund.ts
parentc90b03ec57137278c42de8227300fe25a6657b8c (diff)
downloadwallet-core-c5b25d1cbd459ed90af3e28c9f8d0899a3a28848.tar.xz
update error codes
Diffstat (limited to 'packages/taler-wallet-core/src/operations/refund.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/refund.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/refund.ts b/packages/taler-wallet-core/src/operations/refund.ts
index ff08fc93d..49d03ea15 100644
--- a/packages/taler-wallet-core/src/operations/refund.ts
+++ b/packages/taler-wallet-core/src/operations/refund.ts
@@ -264,7 +264,7 @@ async function storeFailedRefund(
if (p.abortStatus === AbortStatus.AbortRefund) {
// Refund failed because the merchant didn't even try to deposit
// the coin yet, so we try to refresh.
- if (r.exchange_code === TalerErrorCode.REFUND_DEPOSIT_NOT_FOUND) {
+ if (r.exchange_code === TalerErrorCode.EXCHANGE_REFUND_DEPOSIT_NOT_FOUND) {
const coin = await tx.get(Stores.coins, r.coin_pub);
if (!coin) {
logger.warn("coin not found, can't apply refund");