aboutsummaryrefslogtreecommitdiff
path: root/lib/wallet/wxApi.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-13 02:23:24 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-13 02:23:24 +0200
commit250069d86097a966366d21e447f6c3fcc70659bd (patch)
tree0710d7957ece0997e217206622854bf112d8e9b6 /lib/wallet/wxApi.ts
parent122e069d914622343fa1a21c3990a2f416ea9dfe (diff)
downloadwallet-core-250069d86097a966366d21e447f6c3fcc70659bd.tar.xz
refactoring / refresh WIP
Diffstat (limited to 'lib/wallet/wxApi.ts')
-rw-r--r--lib/wallet/wxApi.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wallet/wxApi.ts b/lib/wallet/wxApi.ts
index 549ce0a5a..12d11a387 100644
--- a/lib/wallet/wxApi.ts
+++ b/lib/wallet/wxApi.ts
@@ -20,7 +20,7 @@ import {
PreCoin,
ReserveCreationInfo,
IExchangeInfo,
- Reserve
+ ReserveRecord
} from "./types";
/**
@@ -58,7 +58,7 @@ export async function getExchanges(): Promise<IExchangeInfo[]> {
return await callBackend("get-exchanges");
}
-export async function getReserves(exchangeBaseUrl: string): Promise<Reserve[]> {
+export async function getReserves(exchangeBaseUrl: string): Promise<ReserveRecord[]> {
return await callBackend("get-reserves", { exchangeBaseUrl });
}