From 4dfe451b8a69933fd8c849fd2186a552b2f64b2a Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Fri, 17 Jan 2020 22:11:09 +0100 Subject: [PATCH] log pending ops --- src/wallet.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wallet.ts b/src/wallet.ts index 015a44ccc..a89d2d567 100644 --- a/src/wallet.ts +++ b/src/wallet.ts @@ -280,6 +280,7 @@ export class Wallet { while (!this.stopped) { console.log("running wallet retry loop iteration"); let pending = await this.getPendingOperations(true); + console.log("pending ops", JSON.stringify(pending, undefined, 2)); if (pending.pendingOperations.length === 0) { const allPending = await this.getPendingOperations(false); let numPending = 0;