diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-13 02:23:24 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-13 02:23:24 +0200 |
commit | 250069d86097a966366d21e447f6c3fcc70659bd (patch) | |
tree | 0710d7957ece0997e217206622854bf112d8e9b6 /lib/wallet/wxApi.ts | |
parent | 122e069d914622343fa1a21c3990a2f416ea9dfe (diff) |
refactoring / refresh WIP
Diffstat (limited to 'lib/wallet/wxApi.ts')
-rw-r--r-- | lib/wallet/wxApi.ts | 4 |
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 }); } |