summaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 2abd6c0c8..e8ce97190 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -60,7 +60,6 @@ import {
ReturnCoinsRequest,
SenderWireInfos,
TipStatus,
- WalletBalance,
PreparePayResult,
AcceptWithdrawalResponse,
PurchaseDetails,
@@ -70,6 +69,7 @@ import {
ManualWithdrawalDetails,
GetExchangeTosResult,
AcceptManualWithdrawalResult,
+ BalancesResponse,
} from "./types/walletTypes";
import { Logger } from "./util/logging";
@@ -515,7 +515,7 @@ export class Wallet {
/**
* Get detailed balance information, sliced by exchange and by currency.
*/
- async getBalances(): Promise<WalletBalance> {
+ async getBalances(): Promise<BalancesResponse> {
return this.ws.memoGetBalance.memo(() => getBalances(this.ws));
}