summaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 099707b0f..c47acbace 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -195,7 +195,7 @@ export class Wallet {
pending: PendingOperationInfo,
forceNow = false,
): Promise<void> {
- console.log("running pending", pending);
+ logger.trace(`running pending ${JSON.stringify(pending, undefined, 2)}`);
switch (pending.type) {
case PendingOperationType.Bug:
// Nothing to do, will just be displayed to the user
@@ -552,15 +552,6 @@ export class Wallet {
return await this.db.get(Stores.exchanges, exchangeBaseUrl);
}
- /**
- * Retrive the full event history for this wallet.
- */
- async getHistory(
- historyQuery?: any[],
- ): Promise<{ history: any[] }> {
- return { history: [] };
- }
-
async getPendingOperations({ onlyDue = false } = {}): Promise<
PendingOperationsResponse
> {