summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/types/transactions.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-09-08 19:54:23 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-09-08 19:54:30 +0530
commit043a5f89fe020bbb55170a9fc355c3d699ad8761 (patch)
tree1c033feecf6b276f8dc69e8ddb70ee260d675bb8 /packages/taler-wallet-core/src/types/transactions.ts
parentb9e43e652e606706a81f39d4f888477580de79b0 (diff)
downloadwallet-core-043a5f89fe020bbb55170a9fc355c3d699ad8761.tar.gz
wallet-core-043a5f89fe020bbb55170a9fc355c3d699ad8761.tar.bz2
wallet-core-043a5f89fe020bbb55170a9fc355c3d699ad8761.zip
tipping transaction list entry, integration test and DB simplifications
Diffstat (limited to 'packages/taler-wallet-core/src/types/transactions.ts')
-rw-r--r--packages/taler-wallet-core/src/types/transactions.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/packages/taler-wallet-core/src/types/transactions.ts b/packages/taler-wallet-core/src/types/transactions.ts
index 1d1eb6490..21d7ee181 100644
--- a/packages/taler-wallet-core/src/types/transactions.ts
+++ b/packages/taler-wallet-core/src/types/transactions.ts
@@ -278,18 +278,6 @@ interface TransactionRefund extends TransactionCommon {
interface TransactionTip extends TransactionCommon {
type: TransactionType.Tip;
- // true if the user still needs to accept/decline this tip
- waiting: boolean;
-
- // true if the user has accepted this top, false otherwise
- accepted: boolean;
-
- // Exchange that the tip will be (or was) withdrawn from
- exchangeBaseUrl: string;
-
- // More information about the merchant that sent the tip
- merchant: any;
-
// Raw amount of the tip, without extra fees that apply
amountRaw: AmountString;