[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-wallet-core] branch master updated: -fix type error
From: |
gnunet |
Subject: |
[taler-wallet-core] branch master updated: -fix type error |
Date: |
Sat, 22 Apr 2023 19:11:48 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository wallet-core.
The following commit(s) were added to refs/heads/master by this push:
new 15a1b8d09 -fix type error
15a1b8d09 is described below
commit 15a1b8d0966783033947588cdb27850fe6811405
Author: Florian Dold <florian@dold.me>
AuthorDate: Sat Apr 22 19:11:45 2023 +0200
-fix type error
---
.../taler-wallet-webextension/src/wallet/Transaction.stories.tsx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
b/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
index 5e0b0cbee..7f8db9066 100644
--- a/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
+++ b/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
@@ -27,6 +27,7 @@ import {
TalerProtocolTimestamp,
TransactionCommon,
TransactionDeposit,
+ TransactionMajorState,
TransactionPayment,
TransactionPeerPullCredit,
TransactionPeerPullDebit,
@@ -34,8 +35,6 @@ import {
TransactionPeerPushDebit,
TransactionRefresh,
TransactionRefund,
- TransactionState,
- TransactionSubstate,
TransactionTip,
TransactionType,
TransactionWithdrawal,
@@ -66,8 +65,9 @@ const commonTransaction = {
transactionId: "txn:deposit:12",
frozen: undefined as any as boolean, //deprecated
type: TransactionType.Deposit,
- txState: TransactionState.Unknown,
- txSubstate: TransactionSubstate.None,
+ txState: {
+ major: TransactionMajorState.Unknown,
+ },
} as TransactionCommon;
import merchantIcon from "../../static-dev/merchant-icon.jpeg";
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-wallet-core] branch master updated: -fix type error,
gnunet <=