aboutsummaryrefslogtreecommitdiff
path: root/src/webex/wxApi.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-16 22:52:56 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-16 22:52:56 +0530
commit85a095fa7d4d31e1e84e5e096fa28c59f3cd1918 (patch)
treebfad4a87f540c0ae1480fd2ab80911045f7f912e /src/webex/wxApi.ts
parentdd3a31f33dc54b475b204e15d8d0a5c5e2a70ee8 (diff)
downloadwallet-core-85a095fa7d4d31e1e84e5e096fa28c59f3cd1918.tar.xz
manual withdrawalv0.7.1-dev.8v0.7.1-dev.7
Diffstat (limited to 'src/webex/wxApi.ts')
-rw-r--r--src/webex/wxApi.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/webex/wxApi.ts b/src/webex/wxApi.ts
index 47e73ca4c..de37b3639 100644
--- a/src/webex/wxApi.ts
+++ b/src/webex/wxApi.ts
@@ -32,7 +32,6 @@ import {
import {
BenchmarkResult,
ConfirmPayResult,
- ExchangeWithdrawDetails,
SenderWireInfos,
TipStatus,
WalletBalance,
@@ -173,13 +172,6 @@ export function confirmPay(
}
/**
- * Mark a reserve as confirmed.
- */
-export function confirmReserve(reservePub: string): Promise<void> {
- return callBackend("confirm-reserve", { reservePub });
-}
-
-/**
* Check upgrade information
*/
export function checkUpgrade(): Promise<UpgradeResponse> {
@@ -187,17 +179,6 @@ export function checkUpgrade(): Promise<UpgradeResponse> {
}
/**
- * Create a reserve.
- */
-export function createReserve(args: {
- amount: AmountJson;
- exchange: string;
- senderWire?: string;
-}): Promise<any> {
- return callBackend("create-reserve", args);
-}
-
-/**
* Reset database
*/
export function resetDb(): Promise<void> {