aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
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;
}