aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-02-01 07:19:03 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-02-01 07:19:03 +0100
commitd9683861f98277e7121ff47d2bd223c2d0c2cd34 (patch)
treea7357a7ebe80675716b543f1d30f1f1cdf083efa /src/walletTypes.ts
parent97f6e68ce3a515938228b9a4d3e41b5f4b25a015 (diff)
downloadwallet-core-d9683861f98277e7121ff47d2bd223c2d0c2cd34.tar.xz
fix performance and UI issues with tipping
Diffstat (limited to 'src/walletTypes.ts')
-rw-r--r--src/walletTypes.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/walletTypes.ts b/src/walletTypes.ts
index edcf65830..562d12dfa 100644
--- a/src/walletTypes.ts
+++ b/src/walletTypes.ts
@@ -436,8 +436,12 @@ export interface CoinWithDenom {
* Status of processing a tip.
*/
export interface TipStatus {
- tip: TipRecord;
- rci?: ReserveCreationInfo;
+ accepted: boolean;
+ amount: AmountJson;
+ nextUrl: string;
+ merchantDomain: string;
+ exchangeUrl: string;
+ tipRecord?: TipRecord;
}