aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-31 12:00:04 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-31 12:00:04 +0200
commitc3f47e8f5866838b8c58ad8762d636a2b3ec2217 (patch)
tree5eef656a13cff01a8114c5f9aa7181f870e7a37d /src/walletTypes.ts
parent5a7269b20db0371535669c0faa7f1814d967b5ca (diff)
downloadwallet-core-c3f47e8f5866838b8c58ad8762d636a2b3ec2217.tar.xz
api simplication
Diffstat (limited to 'src/walletTypes.ts')
-rw-r--r--src/walletTypes.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/walletTypes.ts b/src/walletTypes.ts
index aec029371..060401c2f 100644
--- a/src/walletTypes.ts
+++ b/src/walletTypes.ts
@@ -262,26 +262,6 @@ export interface HistoryRecord {
}
/**
- * Query payment response when the payment was found.
- */
-export interface QueryPaymentNotFound {
- found: false;
-}
-
-/**
- * Query payment response when the payment wasn't found.
- */
-export interface QueryPaymentFound {
- found: true;
- contractTermsHash: string;
- contractTerms: ContractTerms;
- lastSessionSig?: string;
- lastSessionId?: string;
- payReq: PayReq;
- proposalId: number;
-}
-
-/**
* Information about all sender wire details known to the wallet,
* as well as exchanges that accept these wire types.
*/